Skip to content

Commit 2c3f0ab

Browse files
committed
Fix GHA CI Command Invocation
1 parent c3f812e commit 2c3f0ab

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/actions/ci-php-command-action/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ runs:
7171
--pull=missing \
7272
--volume ${{ github.workspace }}:/app \
7373
php:${{ inputs.php-version }}-cli-alpine \
74-
${{ inputs.command != '' }}
74+
${{ inputs.command }}

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
needs: composer
6262
strategy:
6363
matrix:
64-
php: ['8.2', '8.3', '8.4', '8.5' ]
64+
php: [ '8.5' ]
6565
runs-on: ubuntu-latest
6666
steps:
6767
- name: Checkout Code
@@ -78,7 +78,7 @@ jobs:
7878
needs: composer
7979
strategy:
8080
matrix:
81-
php: ['8.2', '8.3', '8.4', '8.5' ]
81+
php: [ '8.5' ]
8282
runs-on: ubuntu-latest
8383
steps:
8484
- name: Checkout Code

0 commit comments

Comments
 (0)