Skip to content

Commit 17ceb78

Browse files
dependabot[bot]NinePiece2
authored andcommitted
deps(actions): 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 d808066 commit 17ceb78

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-deploy-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
pip install pyyaml requests
3232
3333
- name: Restore LeetCode API cache
34-
uses: actions/cache/restore@v4
34+
uses: actions/cache/restore@v5
3535
with:
3636
path: .leetcode_cache.json
3737
key: leetcode-cache-latest

.github/workflows/update-leetcode-grid.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Restore last processed commit
2424
id: last_commit_cache
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: .last_leetcode_commit
2828
key: leetcode-last-commit
@@ -65,7 +65,7 @@ jobs:
6565
pip install pyyaml requests
6666
6767
- name: Restore LeetCode API cache
68-
uses: actions/cache/restore@v4
68+
uses: actions/cache/restore@v5
6969
with:
7070
path: .leetcode_cache.json
7171
key: leetcode-cache-${{ github.run_id }}
@@ -78,7 +78,7 @@ jobs:
7878
7979
- name: Save updated cache
8080
if: always()
81-
uses: actions/cache/save@v4
81+
uses: actions/cache/save@v5
8282
with:
8383
path: .leetcode_cache.json
8484
key: leetcode-cache-${{ github.run_id }}

0 commit comments

Comments
 (0)