Skip to content

Commit 4c0db6a

Browse files
committedDec 6, 2024
update build to go1.22.10, test go1.23.4
- go1.22.10 (released 2024-12-03) includes fixes to the runtime and the syscall package. See the Go 1.22.10 milestone on our issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.22.10+label%3ACherryPickApproved - go1.23.4 (released 2024-12-03) includes fixes to the compiler, the runtime, the trace command, and the syscall package. See the Go 1.23.4 milestone on our issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.23.4+label%3ACherryPickApproved Signed-off-by: Akhil Mohan <akhilerm@gmail.com>
1 parent 5e5adbe commit 4c0db6a

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed
 

‎.github/actions/install-go/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: "Reusable action to install Go, so there is one place to bump Go ve
33
inputs:
44
go-version:
55
required: true
6-
default: "1.22.9"
6+
default: "1.22.10"
77
description: "Go version to install"
88

99
runs:

‎.github/workflows/api-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
name: API Release
77

88
env:
9-
GO_VERSION: "1.22.9"
9+
GO_VERSION: "1.22.10"
1010

1111
permissions: # added using https://github.com/step-security/secure-workflows
1212
contents: read

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
strategy:
195195
matrix:
196196
os: [ubuntu-20.04, arm64-8core-32gb, macos-13, windows-2019, windows-2022]
197-
go-version: ["1.22.9", "1.23.3"]
197+
go-version: ["1.22.10", "1.23.4"]
198198
exclude:
199199
- os: ${{ github.repository != 'containerd/containerd' && 'arm64-8core-32gb' }}
200200
steps:

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
name: Release
1414

1515
env:
16-
GO_VERSION: "1.22.9"
16+
GO_VERSION: "1.22.10"
1717

1818
permissions: # added using https://github.com/step-security/secure-workflows
1919
contents: read

‎Vagrantfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ EOF
104104
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
105105
sh.upload_path = "/tmp/vagrant-install-golang"
106106
sh.env = {
107-
'GO_VERSION': ENV['GO_VERSION'] || "1.22.9",
107+
'GO_VERSION': ENV['GO_VERSION'] || "1.22.10",
108108
}
109109
sh.inline = <<~SHELL
110110
#!/usr/bin/env bash

‎contrib/Dockerfile.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# docker run --privileged containerd-test
3030
# ------------------------------------------------------------------------------
3131

32-
ARG GOLANG_VERSION=1.22.9
32+
ARG GOLANG_VERSION=1.22.10
3333
ARG GOLANG_IMAGE=golang
3434

3535
FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang

‎contrib/fuzz/oss_fuzz_build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ go run main.go --target_dir $SRC/containerd/images
4343

4444
apt-get update && apt-get install -y wget
4545
cd $SRC
46-
wget --quiet https://go.dev/dl/go1.22.9.linux-amd64.tar.gz
46+
wget --quiet https://go.dev/dl/go1.22.10.linux-amd64.tar.gz
4747

4848
mkdir temp-go
4949
rm -rf /root/.go/*
50-
tar -C temp-go/ -xzf go1.22.9.linux-amd64.tar.gz
50+
tar -C temp-go/ -xzf go1.22.10.linux-amd64.tar.gz
5151
mv temp-go/go/* /root/.go/
5252
cd $SRC/containerd
5353

‎script/setup/prepare_env_windows.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# lived test environment.
66
Set-MpPreference -DisableRealtimeMonitoring:$true
77

8-
$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.22.9"; make = ""; nssm = "" }
8+
$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.22.10"; make = ""; nssm = "" }
99

1010
Write-Host "Downloading chocolatey package"
1111
curl.exe -L "https://packages.chocolatey.org/chocolatey.0.10.15.nupkg" -o 'c:\choco.zip'

0 commit comments

Comments
 (0)