Skip to content

Commit 36044da

Browse files
Bump actions/cache from 4.2.0 to 4.2.2
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.0...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent db8fd69 commit 36044da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yml

+4-4
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.0
30+
uses: actions/cache@v4.2.2
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.0 # We only want to restore the cache, to avoid overwriting the cache on PRs
37+
uses: actions/cache/restore@v4.2.2 # 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
@@ -76,14 +76,14 @@ jobs:
7676
run: |
7777
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
7878
- name: Cache dependencies
79-
uses: actions/cache@v4.2.0
79+
uses: actions/cache@v4.2.2
8080
with:
8181
path: ${{ steps.pip-cache.outputs.dir }}
8282
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
8383
restore-keys: |
8484
${{ runner.os }}-pip-
8585
- name: Cache d2 database
86-
uses: actions/cache@v4.2.0
86+
uses: actions/cache@v4.2.2
8787
with:
8888
path: .cache/plugin/d2
8989
key: ${{ runner.os }}-d2

0 commit comments

Comments
 (0)