Skip to content

Commit 1a3d77e

Browse files
Merge pull request #58351 from nextcloud/ci/rector-apply-fix-php-version
ci(rector-apply): Fix PHP version for server
2 parents c4eddb5 + 38b6bfc commit 1a3d77e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/rector-apply.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ jobs:
2121
build:
2222
runs-on: ubuntu-latest
2323

24+
strategy:
25+
fail-fast: false
26+
matrix:
27+
php-versions: [ '8.2' ]
28+
2429
name: rector-apply
2530

2631
steps:
@@ -31,14 +36,10 @@ jobs:
3136
persist-credentials: false
3237
ref: ${{ github.event.repository.default_branch }}
3338

34-
- name: Get php version
35-
id: versions
36-
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
37-
38-
- name: Set up php${{ steps.versions.outputs.php-min }}
39+
- name: Set up php${{ matrix.php-versions }}
3940
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
4041
with:
41-
php-version: ${{ steps.versions.outputs.php-min }}
42+
php-version: ${{ matrix.php-versions }}
4243
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
4344
coverage: none
4445
ini-file: development

0 commit comments

Comments
 (0)