Skip to content

Commit 41ae3c4

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] <support@github.com>
1 parent fdea955 commit 41ae3c4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Get yarn cache directory path
3232
id: yarn-cache-dir-path
3333
run: echo "::set-output name=dir::$(yarn cache dir)"
34-
- uses: actions/cache@v4
34+
- uses: actions/cache@v5
3535
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
3636
with:
3737
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Get yarn cache directory path
2323
id: yarn-cache-dir-path
2424
run: echo "::set-output name=dir::$(yarn cache dir)"
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2727
with:
2828
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Get yarn cache directory path
5353
id: yarn-cache-dir-path
5454
run: echo "::set-output name=dir::$(yarn cache dir)"
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 }}

0 commit comments

Comments
 (0)