Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.24.6
go-version: 1.24.9
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/cross-compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function _build() {

# go build -trimpath to build the binary.
if [ "${CAN_BUILD_WITHOUT_DOCKER}" == "false" ]; then
docker run --name runner -d -v $PWD:$PWD --workdir $PWD golang:1.24.6 sleep infinity
docker run --name runner -d -v $PWD:$PWD --workdir $PWD golang:1.24.9 sleep infinity
docker exec -t runner git config --global --add safe.directory $PWD
docker exec -t runner go build -trimpath -tags kqueue --ldflags "${LDFLAGS}" -o "./bin/minio_${os}_${arch}" 1>/dev/null
MUID=$(id -u)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/minio/minio

go 1.24.0

toolchain go1.24.6
toolchain go1.24.9

require (
cloud.google.com/go/storage v1.50.0
Expand Down