Skip to content

Commit 58cfbf2

Browse files
authored
Merge pull request #22 from linuxserver/dependabot/github_actions/actions/cache-5.0.1
2 parents d5c4db4 + cbb48ed commit 58cfbf2

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)