Skip to content

Commit d0f166c

Browse files
committed
Upgrade to go 1.24.2
1 parent 0ee8edb commit d0f166c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bazelci/buildkite-install-go.sh

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

33
set -euo pipefail
44

5-
pkg=go1.24.0.linux-amd64.tar.gz
5+
pkg=go1.24.2.linux-amd64.tar.gz
66

77
wget -o "$HOME/$pkg" "https://golang.org/dl/$pkg" 1>&2
88
tar -xv -C "$HOME" -f "$pkg" 1>&2

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/setup-go@v3
1515
with:
16-
go-version: '1.24.0'
16+
go-version: '1.24.2'
1717
- uses: actions/checkout@v4
1818
- name: golangci-lint
1919
uses: golangci/golangci-lint-action@v3

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ use_repo(oci, "cgo_arm64_base")
2626

2727
# Download an SDK for the host OS & architecture as well as common remote execution platforms.
2828
go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
29-
go_sdk.download(version = "1.24.0")
29+
go_sdk.download(version = "1.24.2")
3030

3131
go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
3232
go_deps.from_file(go_mod = "//:go.mod")

patches/gozstd.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ index 0000000..150b214
9595
+
9696
+# Download an SDK for the host OS & architecture as well as common remote execution platforms.
9797
+go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
98-
+go_sdk.download(version = "1.24.0")
98+
+go_sdk.download(version = "1.24.2")
9999
+
100100
+go_deps = use_extension("@gazelle//:extensions.bzl", "go_deps")
101101
+go_deps.from_file(go_mod = "//:go.mod")

0 commit comments

Comments
 (0)