Skip to content

Commit

Permalink
[main] Bump go to 1.24.1 (#10681)
Browse files Browse the repository at this point in the history
  • Loading branch information
bewebi authored Mar 6, 2025
1 parent 3b19d23 commit afcfa20
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
8 changes: 8 additions & 0 deletions changelog/v1.19.0-beta13/go-bump-1.24.1.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
changelog:
- type: DEPENDENCY_BUMP
description: Bump Go version to 1.24.1
dependencyOwner: golang
dependencyRepo: go
dependencyTag: v1.24.1
issueLink: https://github.com/solo-io/solo-projects/issues/7958
resolvesIssue: false
10 changes: 5 additions & 5 deletions ci/cloudbuild/publish-artifacts.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
steps:

- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.12.0'
- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.12.1'
id: 'prepare-workspace'
args:
- '--repo-name'
Expand Down Expand Up @@ -59,7 +59,7 @@ steps:
- '-c'
- 'docker run --rm --privileged multiarch/qemu-user-static --reset -p yes -c yes'

- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'build-certgen-arm64-binary'
args:
- 'certgen-docker'
Expand All @@ -68,7 +68,7 @@ steps:
- 'GOARCH=arm64'

# Run make targets to push docker images to quay.io
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'publish-docker'
args:
- 'publish-docker'
Expand All @@ -94,7 +94,7 @@ steps:
waitFor:
- 'publish-docker'

- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'release-chart'
dir: *dir
args:
Expand All @@ -109,7 +109,7 @@ steps:
- 'gcr-auth'

# Run make targets to build and push docker images to GCR
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'publish-docker-extended-gcr'
dir: *dir
args:
Expand Down
12 changes: 6 additions & 6 deletions ci/cloudbuild/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
steps:

- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.12.0'
- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.12.1'
id: 'prepare-workspace'
args:
- '--repo-name'
Expand All @@ -23,7 +23,7 @@ steps:
cd /go/pkg
gsutil cat gs://$PROJECT_ID-cache/gloo/gloo-mod.tar.gz | tar -xzf - || echo "untar mod cache failed; continuing because we can download deps as we need them"
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'prepare-envoy'
dir: *dir
entrypoint: 'bash'
Expand Down Expand Up @@ -77,7 +77,7 @@ steps:
waitFor:
- 'prepare-gcr-zone'

- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.12.1'
id: 'prepare-test-tools'
dir: *dir
args:
Expand All @@ -88,7 +88,7 @@ steps:
- 'prepare-gcr-zone'
- 'prepare-test-credentials'

- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.0'
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.1'
id: 'run-tests'
dir: *dir
entrypoint: 'make'
Expand All @@ -99,7 +99,7 @@ steps:
secretEnv:
- 'JWT_PRIVATE_KEY'

- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.0'
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.1'
id: 'run-e2e-tests'
dir: *dir
entrypoint: 'make'
Expand All @@ -110,7 +110,7 @@ steps:
secretEnv:
- 'JWT_PRIVATE_KEY'

- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.0'
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.12.1'
id: 'run-hashicorp-e2e-tests'
dir: *dir
entrypoint: 'make'
Expand Down
2 changes: 1 addition & 1 deletion cloudbuild-cache.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
options:
env:
- "_GO_VERSION=1.24.0"
- "_GO_VERSION=1.24.1"

steps:
- name: gcr.io/cloud-builders/gsutil
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/solo-io/gloo

go 1.24.0
go 1.24.1

// Note for developers: upgrading go will also require upgrading go in the following files:
// ./cloudbuild-cache.yaml,
Expand Down

0 comments on commit afcfa20

Please sign in to comment.