Skip to content

Commit

Permalink
ci/yaml: quote version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
dmke committed Nov 17, 2023
1 parent 5e563b9 commit c18eabb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

env:
GO_VERSION: 1.21
GO_VERSION: "1.21"

steps:
- name: Set up Go ${{ env.GO_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
go-version: [1.20, 1.21, 1.x]
go-version: ["1.20", "1.21", "1.x"]

steps:
- name: Set up Go ${{ matrix.go-version }}
Expand Down

0 comments on commit c18eabb

Please sign in to comment.