Skip to content

Commit d92ed14

Browse files
authored
Merge pull request #2 from istic/dependabot/github_actions/actions/cache-5
Bump actions/cache from 4 to 5
2 parents 7f83db3 + f47465c commit d92ed14

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/laravel-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
4848

4949
- name: Cache Composer dependencies
50-
uses: actions/cache@v4
50+
uses: actions/cache@v5
5151
with:
5252
path: ${{ steps.composer-cache.outputs.dir }}
5353
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -122,7 +122,7 @@ jobs:
122122
run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT"
123123

124124
- name: Cache Composer dependencies
125-
uses: actions/cache@v4
125+
uses: actions/cache@v5
126126
with:
127127
path: ${{ steps.composer-cache.outputs.dir }}
128128
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
virtualenvs-in-project: true
3030

3131
- name: Cache Poetry dependencies
32-
uses: actions/cache@v4
32+
uses: actions/cache@v5
3333
with:
3434
path: .venv
3535
key: venv-${{ matrix.os }}-${{ hashFiles('poetry.lock') }}

0 commit comments

Comments
 (0)