Skip to content

Commit cfefd66

Browse files
committed
fix: Update GitHub Actions to use latest versions of actions
Upgraded actions/checkout to v4 and actions/cache to v3 in the PHP workflow. These updates ensure compatibility with the latest features and improve performance and reliability.
1 parent 845b2a5 commit cfefd66

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1615

1716
- name: Validate composer.json and composer.lock
1817
run: composer validate --strict
1918

2019
- name: Cache Composer packages
2120
id: composer-cache
22-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2322
with:
2423
path: vendor
2524
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)