Skip to content

Commit ad907d2

Browse files
Copilotlisachenko
andcommitted
Update GitHub Actions to resolve CI build failures
- Update actions/checkout from v2 to v4 - Update actions/cache from v2 to v4 (fixes deprecation warning) - Keep shivammathur/setup-php@v2 (already current) This resolves the CI failure: "This request has been automatically failed because it uses a deprecated version of actions/cache: v2" Co-authored-by: lisachenko <[email protected]>
1 parent a96a93a commit ad907d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/phpunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: "Checkout"
26-
uses: "actions/checkout@v2"
26+
uses: "actions/checkout@v4"
2727

2828
- name: "Install PHP"
2929
uses: "shivammathur/setup-php@v2"
@@ -34,7 +34,7 @@ jobs:
3434
tools: composer:v2, cs2pr
3535

3636
- name: "Cache dependencies"
37-
uses: "actions/cache@v2"
37+
uses: "actions/cache@v4"
3838
with:
3939
path: |
4040
~/.composer/cache

0 commit comments

Comments
 (0)