Skip to content

Commit

Permalink
Specify versions as strings not numerals in GitHub Actions configs
Browse files Browse the repository at this point in the history
  • Loading branch information
pamil committed Apr 22, 2021
1 parent 47dae27 commit a3b2fb0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 21 deletions.
29 changes: 10 additions & 19 deletions .github/workflows/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
symfony: [^4.4, ^5.2]
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]

steps:
-
Expand Down Expand Up @@ -119,14 +119,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
symfony: [^4.4, ^5.2]
mysql: [5.7, 8.0]

exclude:
-
php: 7.3
mysql: 8.0
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]
node: ["10.x"]
mysql: ["5.7", "8.0"]

env:
APP_ENV: test_cached
Expand Down Expand Up @@ -252,15 +248,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
symfony: [^4.4, ^5.2]
node: [10.x]
mysql: [5.7, 8.0]

exclude:
-
php: 7.3
mysql: 8.0
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]
node: ["10.x"]
mysql: ["5.7", "8.0"]

env:
APP_ENV: test_cached
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0]
symfony: [^4.4, ^5.2]
php: ["7.4", "8.0"]
symfony: ["^4.4", "^5.2"]
package: "${{ fromJson(needs.list.outputs.packages) }}"

steps:
Expand Down

0 comments on commit a3b2fb0

Please sign in to comment.