Skip to content

Commit 2977522

Browse files
Update actions/cache action to v5
| datasource | package | from | to | | ----------- | ------------- | ---- | -- | | github-tags | actions/cache | v4 | v5 |
1 parent aee56b1 commit 2977522

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
tools: cs2pr
1616

1717
- name: Cache composer dependencies
18-
uses: actions/cache@v4
18+
uses: actions/cache@v5
1919
with:
2020
path: ~/.cache/composer
2121
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/composer-require-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tools: composer-require-checker
1515

1616
- name: Cache composer dependencies
17-
uses: actions/cache@v4
17+
uses: actions/cache@v5
1818
with:
1919
path: ~/.cache/composer
2020
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/roave-bc-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
tools: cs2pr
1818

1919
- name: Cache composer dependencies
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: ~/.cache/composer
2323
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
tools: cs2pr
1616

1717
- name: Cache composer dependencies
18-
uses: actions/cache@v4
18+
uses: actions/cache@v5
1919
with:
2020
path: ~/.cache/composer
2121
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
coverage: none
2727

2828
- name: Cache composer dependencies
29-
uses: actions/cache@v4
29+
uses: actions/cache@v5
3030
with:
3131
path: ~/.cache/composer
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)