Skip to content

Commit d689089

Browse files
authored
Merge pull request #318 from linuxserver/dependabot/github_actions/actions/cache-4.2.3
2 parents 7484140 + 9209f2b commit d689089

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.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.0
30+
uses: actions/cache@v4.2.3
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.3 # 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.3
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.3
8787
with:
8888
path: .cache/plugin/d2
8989
key: ${{ runner.os }}-d2

0 commit comments

Comments
 (0)