Skip to content

Commit

Permalink
dependabot(actions): 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 Oct 4, 2024
1 parent 21a9e9f commit ff0a5dc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
go-version: '1.21'

- name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -38,7 +38,7 @@ jobs:
run: pnpm fetch --frozen-lockfile --prefer-offline

- name: Save PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-ts-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- if: steps.filter.outputs.changes != '[]'
name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -56,7 +56,7 @@ jobs:

- if: steps.filter.outputs.changes != '[]'
name: Save PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
run: git config --global --add safe.directory $GITHUB_WORKSPACE

- name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-tokamak-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: git config --global --add safe.directory $GITHUB_WORKSPACE

- name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -31,7 +31,7 @@ jobs:
run: pnpm fetch --frozen-lockfile --prefer-offline

- name: Save PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/slither-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
npm install --global pnpm
- name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-slither-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -55,7 +55,7 @@ jobs:
run: pnpm fetch --frozen-lockfile --prefer-offline

- name: Save PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-slither-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tokamak-contract-bedrock-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: git config --global --add safe.directory $GITHUB_WORKSPACE

- name: Restore PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand All @@ -29,7 +29,7 @@ jobs:
run: pnpm fetch --frozen-lockfile --prefer-offline

- name: Save PNPM Package Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: pnpm-packages-v2-${{ hashFiles('pnpm-lock.yaml') }}
Expand Down

0 comments on commit ff0a5dc

Please sign in to comment.