Skip to content

Commit ba83411

Browse files
authored
Update to go 1.20 (#34)
1 parent d9552f2 commit ba83411

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-go@v4
1616
with:
17-
go-version: '1.19' # The Go version to download (if necessary) and use.
17+
go-version: '1.20' # The Go version to download (if necessary) and use.
1818
- uses: actions/cache@v3
1919
with:
2020
# In order:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v3
3838
- uses: actions/setup-go@v4
3939
with:
40-
go-version: '1.19' # The Go version to download (if necessary) and use.
40+
go-version: '1.20' # The Go version to download (if necessary) and use.
4141
- uses: actions/cache@v3
4242
with:
4343
# In order:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-go@v4
1616
with:
17-
go-version: '1.19' # The Go version to download (if necessary) and use.
17+
go-version: '1.20' # The Go version to download (if necessary) and use.
1818
- uses: actions/cache@v3
1919
with:
2020
# In order:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linters-settings:
1313
# - github.com/sirupsen/logrus: "logging is allowed only by logutils.Log"
1414
staticcheck:
1515
# Select the Go version to target. The default is '1.13'.
16-
go: "1.19"
16+
go: "1.20"
1717
dupl:
1818
threshold: 100
1919
funlen:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/xyaren/arcdps-log-uploader
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/blang/semver/v4 v4.0.0

0 commit comments

Comments
 (0)