Skip to content

Commit f6076b1

Browse files
committed
fix: upgrade action go version
1 parent 8ebddb0 commit f6076b1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: "Build"
99
strategy:
1010
matrix:
11-
go-version: [1.19.x]
11+
go-version: [1.20.x]
1212
platform: [ubuntu-latest, macos-latest, windows-latest]
1313
fail-fast: true
1414
runs-on: ${{ matrix.platform }}
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Go
3636
uses: actions/setup-go@v4
3737
with:
38-
go-version: 1.19.x
38+
go-version: 1.20.x
3939
- name: Test
4040
run: go test -failfast ./... -race -coverprofile=coverage.txt -covermode=atomic
4141
- name: Push Coverage to codecov.io

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: actions/setup-go@v4
1414
with:
1515
cache: true
16-
go-version: 1.19.x
16+
go-version: 1.20.x
1717
- uses: actions/checkout@v3
1818
- name: golangci-lint
1919
uses: golangci/golangci-lint-action@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/setup-go@v4
2525
with:
2626
cache: true
27-
go-version: 1.19.x
27+
go-version: 1.20.x
2828
- name: Docker Login
2929
uses: docker/login-action@v2
3030
with:

0 commit comments

Comments
 (0)