Skip to content

Commit f219777

Browse files
committed
update actions
1 parent 06c49ab commit f219777

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

.github/workflows/phpstan.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.1
21-
22-
- name: Cache Composer packages
23-
id: composer-cache
24-
uses: actions/cache@v4
25-
with:
26-
path: vendor
27-
key: ${{ runner.os }}-php81-${{ hashFiles('**/composer.lock') }}
28-
restore-keys: |
29-
${{ runner.os }}-php81-
20+
php-version: 8.3
3021

3122
- name: Install dependencies
32-
if: steps.composer-cache.outputs.cache-hit != 'true'
3323
run: |
3424
composer install
3525
composer dump

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [8.4, 8.3, 8.2, 8.1, 8.0]
11+
php: [8.5, 8.4, 8.3, 8.2]
1212

1313
name: P${{ matrix.php }}
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Setup PHP
2020
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)