Skip to content

Commit 265713b

Browse files
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 c2626ea commit 265713b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/check-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
echo "hash=$hash" >> $GITHUB_OUTPUT
6666
6767
- name: Restore server cache
68-
uses: actions/cache@v4
68+
uses: actions/cache@v5
6969
with:
7070
path: pokemon-showdown/node_modules
7171
key: showdown-python${{ matrix.version }}-${{ steps.showdown-hash.outputs.hash }}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "hash=$hash" >> $GITHUB_OUTPUT
4646
4747
- name: Restore server cache
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: pokemon-showdown/node_modules
5151
key: showdown-python${{ matrix.version }}-${{ steps.showdown-hash.outputs.hash }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
echo "hash=$hash" >> $GITHUB_OUTPUT
8080
8181
- name: Restore server cache
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: pokemon-showdown/node_modules
8585
key: showdown-python${{ matrix.version }}-${{ steps.showdown-hash.outputs.hash }}

0 commit comments

Comments
 (0)