Skip to content

Commit 08b92d7

Browse files
committed
fix: upgrade actions/cache from v4 to v5 (Node 24)
Node.js 20 actions are deprecated — actions/cache v4 uses Node 20. Upgrade to v5 which supports Node 24. See: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
1 parent acb598e commit 08b92d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ runs:
8181

8282
- id: load-cache
8383
if: ${{ env.CACHE_KEY }}
84-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
84+
uses: actions/cache/restore@v5
8585
with:
8686
path: ~/cache-apt-pkgs
8787
key: cache-apt-pkgs_${{ env.CACHE_KEY }}
@@ -117,7 +117,7 @@ runs:
117117

118118
- id: save-cache
119119
if: ${{ env.CACHE_KEY && ! steps.load-cache.outputs.cache-hit }}
120-
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
120+
uses: actions/cache/save@v5
121121
with:
122122
path: ~/cache-apt-pkgs
123123
key: ${{ steps.load-cache.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)