]> git.feebdaed.xyz Git - 0xmirror/containerd.git/commitdiff
ci: bump Go 1.24.11, 1.25.5
authorAustin Vazquez <austin.vazquez@docker.com>
Wed, 3 Dec 2025 15:53:26 +0000 (09:53 -0600)
committerAustin Vazquez <austin.vazquez@docker.com>
Wed, 3 Dec 2025 15:53:26 +0000 (09:53 -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 5097d93a4e126b0e10528ed989707b07fb70a39c..55df7be9689b35b46b027f52546a905fac327792 100644 (file)
@@ -12,7 +12,7 @@
        "features": {
                "ghcr.io/devcontainers/features/docker-in-docker:2": {},
                "ghcr.io/devcontainers/features/go:1": {
-                       "version": "1.24.10"
+                       "version": "1.24.11"
                }
        },
 
index d44135a05813a4f2947b204644dbc15f6aeb8090..0855646c53cc1d3d6ce254a2e2d4fd7fb7b4481b 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.10"
+    default: "1.24.11"
     description: "Go version to install"
 
 runs:
index 408f943b784e836dde15cf7fa61c58f3aee7c43b..3707e01d13550fe5f055bb72230b17c59b311542 100644 (file)
@@ -6,7 +6,7 @@ on:
 name: API Release
 
 env:
-  GO_VERSION: "1.24.10"
+  GO_VERSION: "1.24.11"
 
 permissions: # added using https://github.com/step-security/secure-workflows
   contents: read
index 33ec9d246ba084cdec44c7803d623d72de44118b..47d81c9bb80f632ee601809f4522b7f41cfcf67e 100644 (file)
@@ -195,7 +195,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
-        go-version: ["1.24.10", "1.25.4"]
+        go-version: ["1.24.11", "1.25.5"]
         exclude:
           - os: ${{ github.event.repository.private && 'ubuntu-24.04-arm' || '' }}
     steps:
index 7ea24665bb40321f350cc905529372e4e5539a47..87080b2b47f6b7999651596e416821e88e5b4b9f 100644 (file)
@@ -14,7 +14,7 @@
 
 ARG UBUNTU_VERSION=22.04
 ARG BASE_IMAGE=ubuntu:${UBUNTU_VERSION}
-ARG GO_VERSION=1.24.10
+ARG GO_VERSION=1.24.11
 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 356916edff2d16d694f5bd2fc3682ba90ce99d41..d7b99ca1fdf67dae0e83da71cdd3c06627e7d86b 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.10",
+        'GO_VERSION': ENV['GO_VERSION'] || "1.24.11",
     }
     sh.inline = <<~SHELL
         #!/usr/bin/env bash
index 0ecce1d6b60bd5585d82cf6d1791d05bfbb6b4a8..f662dfd48ab96d7f2980b87386c88c756776ff90 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.10
+ARG GOLANG_VERSION=1.24.11
 ARG GOLANG_IMAGE=golang
 
 FROM ${GOLANG_IMAGE}:${GOLANG_VERSION} AS golang
index cf5f7db4b681f488c380343ff3b943329875999f..e704da0889dd73c86fb7d42a4870d65d66393d19 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.10.linux-amd64.tar.gz
+wget --quiet https://go.dev/dl/go1.24.11.linux-amd64.tar.gz
 
 mkdir temp-go
 rm -rf /root/.go/*
-tar -C temp-go/ -xzf go1.24.10.linux-amd64.tar.gz
+tar -C temp-go/ -xzf go1.24.11.linux-amd64.tar.gz
 mv temp-go/go/* /root/.go/
 cd $SRC/containerd
 
index 04b9f0fd70d21f268782a49717d829cb60064524..48e923083ea7a77571d05cf5e718c2786bfe7bb2 100644 (file)
@@ -5,7 +5,7 @@
 # lived test environment.
 Set-MpPreference -DisableRealtimeMonitoring:$true
 
-$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.24.10"; make = ""; nssm = "" }
+$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.24.11"; make = ""; nssm = "" }
 
 Write-Host "Downloading chocolatey package"
 curl.exe -L "https://packages.chocolatey.org/chocolatey.0.10.15.nupkg" -o 'c:\choco.zip'