Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to '.github/workflows/metrics.yaml')
-rw-r--r--.github/workflows/metrics.yaml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/metrics.yaml b/.github/workflows/metrics.yaml
index ed775ae2d3..be9f504e59 100644
--- a/.github/workflows/metrics.yaml
+++ b/.github/workflows/metrics.yaml
@@ -21,7 +21,7 @@ jobs:
rustup component add rustfmt rust-src
rustup default stable
- name: Cache cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
@@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v4
- name: Restore cargo cache
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
@@ -52,7 +52,7 @@ jobs:
run: cargo xtask metrics build
- name: Cache target
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: target/
key: ${{ runner.os }}-target-${{ github.sha }}
@@ -76,7 +76,7 @@ jobs:
uses: actions/checkout@v4
- name: Restore cargo cache
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
@@ -86,7 +86,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ github.sha }}
- name: Restore target cache
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: target/
key: ${{ runner.os }}-target-${{ github.sha }}