Skip to content

Commit ff0ad85

Browse files
authored
Update for Go 1.21 (#575)
Enable CI testing of Go 1.21. * Bump Go modules. Signed-off-by: SuperQ <[email protected]>
1 parent ce949a5 commit ff0ad85

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
jobs:
55
lint:
66
docker:
7-
- image: cimg/go:1.20
7+
- image: cimg/go:1.21
88
steps:
99
- checkout
1010
- run: make check_license
@@ -48,6 +48,7 @@ workflows:
4848
go_version:
4949
- "1.19"
5050
- "1.20"
51+
- "1.21"
5152
- test:
5253
name: test-windows
5354
os: windows
@@ -57,3 +58,4 @@ workflows:
5758
go_version:
5859
- "1.19"
5960
- "1.20"
61+
- "1.21"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ go 1.19
55
require (
66
github.com/google/go-cmp v0.5.9
77
golang.org/x/sync v0.3.0
8-
golang.org/x/sys v0.11.0
8+
golang.org/x/sys v0.12.0
99
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
22
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
33
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
44
golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y=
5-
golang.org/x/sys v0.11.0 h1:eG7RXZHdqOJ1i+0lgLgCpSXAp6M3LYlAo6osgSi0xOM=
6-
golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
5+
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
6+
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=

0 commit comments

Comments
 (0)