Skip to content

Commit

Permalink
Escape versions with quotes in GH actions
Browse files Browse the repository at this point in the history
To avoid that 8.0 is interpreted as 8
  • Loading branch information
etiennestuder committed Feb 16, 2023
1 parent 53d253d commit 4871c6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 11, 16, 17 ]
gradle-version: [ 6.9.3, 7.0.2, 7.6, 8.0 ]
java-version: [ "8", "11", "16", "17" ]
gradle-version: [ "6.9.3", "7.0.2", "7.6", "8.0" ]
steps:
- name: Check out project
uses: actions/checkout@v3
Expand Down

0 comments on commit 4871c6c

Please sign in to comment.