Skip to content

Commit e58f6a8

Browse files
authored
update go in workflows to be 1.20 (#1043)
* update go in workflows to be 1.20 * remove -i ... it is the default?
1 parent 93218fa commit e58f6a8

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/go-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
go-test:
88
strategy:
99
matrix:
10-
go-version: [1.19.x]
10+
go-version: [1.20.x]
1111
os: [ubuntu-latest, macos-latest, windows-latest]
1212
runs-on: ${{ matrix.os }}
1313
steps:
@@ -17,5 +17,4 @@ jobs:
1717
uses: actions/setup-go@v3
1818
with:
1919
go-version: ${{ matrix.go-version }}
20-
- run: go test -i ./...
2120
- run: go test -race -v ./...

.github/workflows/go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ jobs:
1212
- name: Set up Go
1313
uses: actions/setup-go@v3
1414
with:
15-
go-version: 1.19.x
15+
go-version: 1.20.x
1616
- run: ./dev/go-lint.sh

.github/workflows/goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and Release
22

33
on:
44
push:
5-
tags:
5+
tags:
66
- '*'
77

88
# There are two cases where this GitHub action will run:
@@ -177,7 +177,7 @@ jobs:
177177
- name: Set up Go
178178
uses: actions/setup-go@v3
179179
with:
180-
go-version: 1.19
180+
go-version: 1.20
181181
- run: go test -i ./...
182182
- run: go test -race -v ./...
183183
- run: echo "${DOCKER_PASSWORD}" | docker login -u=$DOCKER_USERNAME --password-stdin

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
golang 1.19.8
1+
golang 1.20.8
22
shfmt 3.2.0
33
shellcheck 0.7.1

0 commit comments

Comments
 (0)