]> git.feebdaed.xyz Git - 0xmirror/containerd.git/commitdiff
ci: bump Go 1.24.10, 1.25.4
authorAustin Vazquez <austin.vazquez@docker.com>
Wed, 3 Dec 2025 15:52:09 +0000 (09:52 -0600)
committerAustin Vazquez <austin.vazquez@docker.com>
Wed, 3 Dec 2025 15:52:09 +0000 (09:52 -0600)
Signed-off-by: Austin Vazquez <austin.vazquez@docker.com>
.devcontainer/devcontainer.json
.github/actions/install-go/action.yml
.github/workflows/api-release.yml
.github/workflows/ci.yml
.github/workflows/release/Dockerfile
Vagrantfile
contrib/Dockerfile.test
contrib/fuzz/oss_fuzz_build.sh
script/setup/prepare_env_windows.ps1

index e6879dbbf3d195e026eb822d9c962ff045c436c8..5097d93a4e126b0e10528ed989707b07fb70a39c 100644 (file)
@@ -12,7 +12,7 @@
        "features": {
                "ghcr.io/devcontainers/features/docker-in-docker:2": {},
                "ghcr.io/devcontainers/features/go:1": {
-                       "version": "1.24.9"
+                       "version": "1.24.10"
                }
        },
 
index fe80b78fb0e491e3de5f9d67146fa050eacda828..d44135a05813a4f2947b204644dbc15f6aeb8090 100644 (file)
@@ -3,7 +3,7 @@ description: "Reusable action to install Go, so there is one place to bump Go ve
 inputs:
   go-version:
     required: true
-    default: "1.24.9"
+    default: "1.24.10"
     description: "Go version to install"
 
 runs:
index f5fcd7e98de9136791f24e378f7fd9d5c1f78ae8..408f943b784e836dde15cf7fa61c58f3aee7c43b 100644 (file)
@@ -6,7 +6,7 @@ on:
 name: API Release
 
 env:
-  GO_VERSION: "1.24.9"
+  GO_VERSION: "1.24.10"
 
 permissions: # added using https://github.com/step-security/secure-workflows
   contents: read
index 506065a1faaf853bd4d6bf8a476b49c7a5480a3d..33ec9d246ba084cdec44c7803d623d72de44118b 100644 (file)
@@ -195,7 +195,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
-        go-version: ["1.24.9", "1.25.3"]
+        go-version: ["1.24.10", "1.25.4"]
         exclude:
           - os: ${{ github.event.repository.private && 'ubuntu-24.04-arm' || '' }}
     steps:
index 1fe99a484b563acb9c5f557dd9e888c95e48dfc9..7ea24665bb40321f350cc905529372e4e5539a47 100644 (file)
@@ -14,7 +14,7 @@
 
 ARG UBUNTU_VERSION=22.04
 ARG BASE_IMAGE=ubuntu:${UBUNTU_VERSION}
-ARG GO_VERSION=1.24.9
+ARG GO_VERSION=1.24.10
 ARG GO_IMAGE=golang:${GO_VERSION}
 FROM --platform=$BUILDPLATFORM $GO_IMAGE AS go
 FROM --platform=$BUILDPLATFORM tonistiigi/xx:1.6.1@sha256:923441d7c25f1e2eb5789f82d987693c47b8ed987c4ab3b075d6ed2b5d6779a3 AS xx
index ff58aa8bda49b4cd8f17d06e7e4287df9c6d0009..356916edff2d16d694f5bd2fc3682ba90ce99d41 100644 (file)
@@ -107,7 +107,7 @@ EOF
   config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
     sh.upload_path = "/tmp/vagrant-install-golang"
     sh.env = {
-        'GO_VERSION': ENV['GO_VERSION'] || "1.24.9",
+        'GO_VERSION': ENV['GO_VERSION'] || "1.24.10",
     }
     sh.inline = <<~SHELL
         #!/usr/bin/env bash
index 204b90c7f9e3dc83f71115e7924bf96c050b424c..0ecce1d6b60bd5585d82cf6d1791d05bfbb6b4a8 100644 (file)
@@ -34,7 +34,7 @@
 #   docker run --privileged --group-add keep-groups -v ./critest_exit_code.txt:/tmp/critest_exit_code.txt containerd-test
 # ------------------------------------------------------------------------------
 
-ARG GOLANG_VERSION=1.24.9
+ARG GOLANG_VERSION=1.24.10
 ARG GOLANG_IMAGE=golang
 
 FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang
index dc3f37867c21b0b005fde08b0e5441fe40e0ca4c..cf5f7db4b681f488c380343ff3b943329875999f 100755 (executable)
@@ -39,11 +39,11 @@ compile_fuzzers() {
 
 apt-get update && apt-get install -y wget
 cd $SRC
-wget --quiet https://go.dev/dl/go1.24.9.linux-amd64.tar.gz
+wget --quiet https://go.dev/dl/go1.24.10.linux-amd64.tar.gz
 
 mkdir temp-go
 rm -rf /root/.go/*
-tar -C temp-go/ -xzf go1.24.9.linux-amd64.tar.gz
+tar -C temp-go/ -xzf go1.24.10.linux-amd64.tar.gz
 mv temp-go/go/* /root/.go/
 cd $SRC/containerd
 
index 616d305e2a66548e0d90aec9a0bfd1fabd55f960..04b9f0fd70d21f268782a49717d829cb60064524 100644 (file)
@@ -5,7 +5,7 @@
 # lived test environment.
 Set-MpPreference -DisableRealtimeMonitoring:$true
 
-$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.24.9"; make = ""; nssm = "" }
+$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.24.10"; make = ""; nssm = "" }
 
 Write-Host "Downloading chocolatey package"
 curl.exe -L "https://packages.chocolatey.org/chocolatey.0.10.15.nupkg" -o 'c:\choco.zip'