Skip to content

Commit b77adc7

Browse files
committed
BUILD/MINOR: github: use proper go version as a string
1 parent cb61979 commit b77adc7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/.goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.20
15+
go-version: '1.20'
1616
- name: Run GoReleaser
1717
uses: goreleaser/goreleaser-action@v4
1818
with:

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go 1.20
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.20
16+
go-version: '1.20'
1717
id: go
1818

1919
- name: Check out code into the Go module directory

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go 1.20
1919
uses: actions/setup-go@v4
2020
with:
21-
go-version: 1.20
21+
go-version: '1.20'
2222
- run: make e2e
2323
env:
2424
HAPROXY_VERSION: ${{ matrix.haproxy_version }}

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.20
16+
go-version: '1.20'
1717
- uses: actions/cache@v3
1818
with:
1919
path: |
@@ -35,7 +35,7 @@ jobs:
3535
- name: Set up Go
3636
uses: actions/setup-go@v4
3737
with:
38-
go-version: 1.20
38+
go-version: '1.20'
3939
- uses: actions/cache@v3
4040
with:
4141
path: |

0 commit comments

Comments
 (0)