Skip to content

Commit 536e402

Browse files
build(deps): bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 42de954 commit 536e402

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/contracts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "::set-output name=dir::$(yarn cache dir)"
5353

5454
- name: Cache yarn dependencies
55-
uses: actions/cache@v4
55+
uses: actions/cache@v5
5656
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
5757
with:
5858
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Cache node_modules
6464
id: npm_cache
65-
uses: actions/cache@v4
65+
uses: actions/cache@v5
6666
with:
6767
path: node_modules
6868
key: node_modules-${{ hashFiles('yarn.lock') }}
@@ -113,7 +113,7 @@ jobs:
113113
run: echo "::set-output name=dir::$(yarn cache dir)"
114114

115115
- name: Cache yarn dependencies
116-
uses: actions/cache@v4
116+
uses: actions/cache@v5
117117
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
118118
with:
119119
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -123,7 +123,7 @@ jobs:
123123
124124
- name: Cache node_modules
125125
id: npm_cache
126-
uses: actions/cache@v4
126+
uses: actions/cache@v5
127127
with:
128128
path: node_modules
129129
key: node_modules-${{ hashFiles('yarn.lock') }}

0 commit comments

Comments
 (0)