Skip to content

Commit 94dbfae

Browse files
akhilermestesp
authored andcommitted
ci: bump go 1.24.12, 1.25.6
Signed-off-by: Akhil Mohan <[email protected]> (cherry picked from commit bde3dea) Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 033f242 commit 94dbfae

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"features": {
1313
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
1414
"ghcr.io/devcontainers/features/go:1": {
15-
"version": "1.24.11"
15+
"version": "1.24.12"
1616
}
1717
},
1818

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

Lines changed: 1 addition & 1 deletion
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.24.11"
6+
default: "1.24.12"
77
description: "Go version to install"
88

99
runs:

.github/workflows/api-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
name: API Release
77

88
env:
9-
GO_VERSION: "1.24.11"
9+
GO_VERSION: "1.24.12"
1010

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

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
strategy:
196196
matrix:
197197
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest]
198-
go-version: ["1.24.11", "1.25.5"]
198+
go-version: ["1.24.12", "1.25.6"]
199199
exclude:
200200
- os: ${{ github.event.repository.private && 'ubuntu-24.04-arm' || '' }}
201201
steps:

.github/workflows/release/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
ARG UBUNTU_VERSION=22.04
1616
ARG BASE_IMAGE=ubuntu:${UBUNTU_VERSION}
17-
ARG GO_VERSION=1.24.11
17+
ARG GO_VERSION=1.24.12
1818
ARG GO_IMAGE=golang:${GO_VERSION}
1919
FROM --platform=$BUILDPLATFORM $GO_IMAGE AS go
2020
FROM --platform=$BUILDPLATFORM tonistiigi/xx:1.6.1@sha256:923441d7c25f1e2eb5789f82d987693c47b8ed987c4ab3b075d6ed2b5d6779a3 AS xx

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ EOF
107107
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
108108
sh.upload_path = "/tmp/vagrant-install-golang"
109109
sh.env = {
110-
'GO_VERSION': ENV['GO_VERSION'] || "1.24.11",
110+
'GO_VERSION': ENV['GO_VERSION'] || "1.24.12",
111111
}
112112
sh.inline = <<~SHELL
113113
#!/usr/bin/env bash

contrib/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# docker run --privileged --group-add keep-groups -v ./critest_exit_code.txt:/tmp/critest_exit_code.txt containerd-test
3535
# ------------------------------------------------------------------------------
3636

37-
ARG GOLANG_VERSION=1.24.11
37+
ARG GOLANG_VERSION=1.24.12
3838
ARG GOLANG_IMAGE=golang
3939

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

contrib/fuzz/oss_fuzz_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ compile_fuzzers() {
3939

4040
apt-get update && apt-get install -y wget
4141
cd $SRC
42-
wget --quiet https://go.dev/dl/go1.24.11.linux-amd64.tar.gz
42+
wget --quiet https://go.dev/dl/go1.24.12.linux-amd64.tar.gz
4343

4444
mkdir temp-go
4545
rm -rf /root/.go/*
46-
tar -C temp-go/ -xzf go1.24.11.linux-amd64.tar.gz
46+
tar -C temp-go/ -xzf go1.24.12.linux-amd64.tar.gz
4747
mv temp-go/go/* /root/.go/
4848
cd $SRC/containerd
4949

script/setup/prepare_env_windows.ps1

Lines changed: 1 addition & 1 deletion
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.24.11"; make = ""; nssm = "" }
8+
$PACKAGES= @{ mingw = "10.2.0"; git = ""; golang = "1.24.12"; 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)