Skip to content

Commit

Permalink
Merge pull request #1533 from gtk-rs/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/cache-4

build(deps): bump actions/cache from 3 to 4
  • Loading branch information
sdroege authored Jan 22, 2024
2 parents 1c7a6b5 + 19e2b04 commit b0b3675
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ jobs:
components: rustfmt, clippy
id: toolchain
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: checks-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: checks-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: checks-${{ runner.os }}-cargo-target-dir-${{ steps.toolchain.outputs.rustc_hash }}
Expand Down Expand Up @@ -108,17 +108,17 @@ jobs:
echo "::set-env name=LIBGIT2_SYS_USE_PKG_CONFIG::1"
if: matrix.os == 'windows-latest'
- name: Cache cargo registry
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: build-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: build-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: build-${{ runner.os }}-cargo-target-dir-${{ steps.toolchain.outputs.rustc_hash }}
Expand Down

0 comments on commit b0b3675

Please sign in to comment.