Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jun 18, 2024
1 parent 28f3951 commit 100c110
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-ccd-js-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-react-components.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-rust-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
name: build-release

- name: Restore cached dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-wallet-connectors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./node_modules
Expand Down Expand Up @@ -63,23 +63,23 @@ jobs:

- name: Cache GRPC
id: cache-grpc
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./packages/sdk/src/grpc-api
key: ${{ runner.os }}-grpc-${{ hashFiles('deps/concordium-base/concordium-grpc-api') }}-${{ env.DUMMY }}
restore-keys: ${{ runner.os }}-grpc

- name: Cache WebPack
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ./packages/web/.webpack-cache
# These two lines ensure that a fresh cache is generated after each run
key: ${{ runner.os }}-webpack-${{ github.run_id }}
restore-keys: ${{ runner.os }}-webpack

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
cache: yarn

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
cache: yarn

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
cache: yarn

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
cache: yarn

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand All @@ -246,7 +246,7 @@ jobs:
cache: yarn

- name: Restore dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
./node_modules
Expand Down

0 comments on commit 100c110

Please sign in to comment.