Skip to content

Commit e377423

Browse files
committed
fix CI: bump PHP to 8.3, remove composer.lock from tracking
Lock file had L13 deps (PHP 8.3+) committed, breaking the lint workflow on PHP 8.2. Libraries shouldn't track lock files anyway. Also bumped checkout action to v6.
1 parent 570ba80 commit e377423

3 files changed

Lines changed: 4 additions & 11382 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
pull_request:
66

77
env:
8-
PHP_VERSION: "8.2"
8+
PHP_VERSION: "8.3"
99

1010
jobs:
1111
phplint:
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: "Checkout"
22-
uses: "actions/checkout@v4"
22+
uses: "actions/checkout@v6"
2323

2424
- name: "Install PHP"
2525
uses: "shivammathur/setup-php@v2"

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 5
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: '8.2'
24+
php-version: '8.3'
2525
coverage: none
2626

2727
- name: Install composer dependencies

0 commit comments

Comments
 (0)