Skip to content

Commit cbb48ed

Browse files
Bump actions/cache from 4.2.4 to 5.0.1
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 5.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.4...v5.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0ed1de1 commit cbb48ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
run: |
2828
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
2929
- name: Cache dependencies
30-
uses: actions/cache@v4.2.4
30+
uses: actions/cache@v5.0.1
3131
with:
3232
path: ${{ steps.pip-cache.outputs.dir }}
3333
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
3434
restore-keys: |
3535
${{ runner.os }}-pip-
3636
- name: Cache d2 database
37-
uses: actions/cache/restore@v4.2.4 # We only want to restore the cache, to avoid overwriting the cache on PRs
37+
uses: actions/cache/restore@v5.0.1 # We only want to restore the cache, to avoid overwriting the cache on PRs
3838
with:
3939
path: .cache/plugin/d2
4040
key: ${{ runner.os }}-d2
@@ -77,14 +77,14 @@ jobs:
7777
run: |
7878
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
7979
- name: Cache dependencies
80-
uses: actions/cache@v4.2.4
80+
uses: actions/cache@v5.0.1
8181
with:
8282
path: ${{ steps.pip-cache.outputs.dir }}
8383
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
8484
restore-keys: |
8585
${{ runner.os }}-pip-
8686
- name: Cache d2 database
87-
uses: actions/cache@v4.2.4
87+
uses: actions/cache@v5.0.1
8888
with:
8989
path: .cache/plugin/d2
9090
key: ${{ runner.os }}-d2

0 commit comments

Comments
 (0)