We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd374c commit 0df00f7Copy full SHA for 0df00f7
.github/workflows/cache.yml
@@ -7,7 +7,7 @@ on:
7
php-versions:
8
description: 'PHP version to cache'
9
default: '8.1 8.2 8.3 8.4'
10
- required: false
+ required: true
11
jobs:
12
get-matrix:
13
runs-on: ubuntu-latest
@@ -17,7 +17,7 @@ jobs:
17
- name: Get matrix
18
id: set-matrix
19
run: |
20
- IFS=' ' read -r -a PHP_VERSIONS <<<"${{ github.event.inputs.php-versions }}"
+ IFS=' ' read -r -a PHP_VERSIONS <<<"${{ inputs.php-versions }}"
21
php_array=()
22
for php in "${PHP_VERSIONS[@]}"; do
23
php_array+=("{\"php\": \"$php\"}")
0 commit comments