Skip to content

Commit

Permalink
Bump go 1.20.2
Browse files Browse the repository at this point in the history
Go 1.20.2 has an important fix to an issue described in [1].
Switch from using Go 1.19 from Dockerfile (used for release binaries and
some CI) as well as from cirrus-ci.

Note in cirrus-ci we have to specify the patch number explicitly, as
otherwise go 1.20 will be used, while in Dockerfile saying 1.20 means
to use 1.20.x (which is 1.20.2 now).

[1] golang/go#58624

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Mar 9, 2023
1 parent 6d0261c commit 1139330
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ task:
env:
HOME: /root
CIRRUS_WORKING_DIR: /home/runc
GO_VERSION: "1.19"
GO_VERSION: "1.20.2"
BATS_VERSION: "v1.3.0"
RPMS: gcc git iptables jq glibc-static libseccomp-devel make criu fuse-sshfs
# yamllint disable rule:key-duplicates
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.19
ARG GO_VERSION=1.20
ARG BATS_VERSION=v1.3.0
ARG LIBSECCOMP_VERSION=2.5.4

Expand Down

0 comments on commit 1139330

Please sign in to comment.