Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Cargo registry cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry/index
Expand All @@ -41,7 +41,7 @@ jobs:
run: echo "::set-output name=version::$(cargo search 'cargo-cache' --limit 1 | head -n 1 | cut -d ' ' -f 3 | cut -d '"' -f 2)"

- name: Cargo binaries cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/bin/cargo-cache
Expand All @@ -60,7 +60,7 @@ jobs:
run: echo "::set-output name=version::$(rustc --version | cut -d ' ' -f 2)"

- name: Build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: target
key: ${{ runner.os }}-lint-${{ steps.rustcversion.outputs.version }}-${{ hashFiles('**/Cargo.toml') }}
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Cargo registry cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry/index
Expand All @@ -110,7 +110,7 @@ jobs:
run: echo "::set-output name=version::$(rustc --version | cut -d ' ' -f 2)"

- name: Build cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: target
key: ${{ runner.os }}-test-${{ steps.rustcversion.outputs.version }}-${{ hashFiles('**/Cargo.toml') }}
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Cargo registry cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry/index
Expand All @@ -233,7 +233,7 @@ jobs:
run: echo "::set-output name=version::$(cargo search 'grcov' --limit 1 | head -n 1 | cut -d ' ' -f 3 | cut -d '"' -f 2)"

- name: grcov cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/bin/grcov
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"

- name: Cargo registry cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry/index
Expand Down
Loading