Skip to content

Commit edbcfef

Browse files
chore(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 6162d2f commit edbcfef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/precommitVersionBumps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
git pull origin next
3434
3535
- name: Cache NPM dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.npm
3939
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4040
restore-keys: |
4141
${{ runner.os }}-node
4242
4343
- name: Cache Python dependencies
44-
uses: actions/cache@v4
44+
uses: actions/cache@v5
4545
with:
4646
path: ~/.cache/pip
4747
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements/**') }}

.github/workflows/semanticVersionBump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
persist-credentials: false
3030

3131
- name: Cache NPM dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.npm
3535
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)