Fix go 1.20 version in github actions (#848)

YAML interprets 1.20 as 1.2 without explicitely being a string.
This commit is contained in:
Thomas Pelletier
2023-02-09 12:00:14 -05:00
committed by GitHub
parent b58c20aa49
commit c4a2eef8a4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,6 +15,6 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: 1.20
go-version: "1.20"
- name: Run tests with coverage
run: ./ci.sh coverage -d "${GITHUB_BASE_REF-HEAD}"
+1 -1
View File
@@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20
go-version: "1.20"
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with: