Skip to content

Commit 9e4a821

Browse files
Merge pull request #721 from nextcloud/bugfix/noid/fix-psalm-matrix-php-verison
fix(psalm-matrix): Fix PHP version pick up from matrix job
2 parents c4c13b1 + adf492f commit 9e4a821

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

workflow-templates/psalm-matrix.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest-low
2323
outputs:
2424
ocp-matrix: ${{ steps.versions.outputs.ocp-matrix }}
25+
php-min: ${{ steps.versions.outputs.php-min }}
2526
steps:
2627
- name: Checkout app
2728
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -50,10 +51,10 @@ jobs:
5051
with:
5152
persist-credentials: false
5253

53-
- name: Set up php${{ matrix.php-min }}
54+
- name: Set up php${{ needs.matrix.outputs.php-min }}
5455
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2.37.0
5556
with:
56-
php-version: ${{ matrix.php-min }}
57+
php-version: ${{ needs.matrix.outputs.php-min }}
5758
extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
5859
coverage: none
5960
ini-file: development

0 commit comments

Comments
 (0)