Skip to content

Commit e69d980

Browse files
committed
Update go version to 1.24.10
Also update the script for `.pyroscope.yaml` (was missed in #4606)
1 parent 8d588a4 commit e69d980

File tree

19 files changed

+26
-23
lines changed

19 files changed

+26
-23
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Go
2828
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
2929
with:
30-
go-version: 1.24.9
30+
go-version: 1.24.10
3131
- name: Format
3232
run: make fmt check/unstaged-changes
3333
check-generated:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Go
4141
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4242
with:
43-
go-version: 1.24.9
43+
go-version: 1.24.10
4444
- name: Check generated files
4545
run: make generate check/unstaged-changes
4646
test:
@@ -63,7 +63,7 @@ jobs:
6363
- name: Install Go
6464
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
6565
with:
66-
go-version: 1.24.9
66+
go-version: 1.24.10
6767
- name: Go Mod
6868
run: make check/go/mod
6969
- name: Test
@@ -78,7 +78,7 @@ jobs:
7878
- name: Install Go
7979
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
8080
with:
81-
go-version: 1.24.9
81+
go-version: 1.24.10
8282
- name: Run linter
8383
run: make lint
8484
- name: Check helm manifests
@@ -109,7 +109,7 @@ jobs:
109109
- name: Set up go
110110
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
111111
with:
112-
go-version: 1.24.9
112+
go-version: 1.24.10
113113
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
114114
with:
115115
node-version: 20
@@ -139,7 +139,7 @@ jobs:
139139
- name: Set up go
140140
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
141141
with:
142-
go-version: 1.24.9
142+
go-version: 1.24.10
143143
# login to docker hub
144144
- id: get-secrets
145145
uses: grafana/shared-workflows/actions/get-vault-secrets@eb33f84481d38701f4d2c587a4817ce332784f5f

.github/workflows/fuzzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- name: Install Go
1717
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
1818
with:
19-
go-version: 1.24.9
19+
go-version: 1.24.10
2020
- name: Run Fuzz_Merge_Single
2121
run: go test -fuzz=Fuzz_Merge_Single --fuzztime 1h -run '^$' -v ./pkg/pprof/

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- run: git fetch --force --tags
3131
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
3232
with:
33-
go-version: "1.24.9"
33+
go-version: "1.24.10"
3434
cache: false
3535
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
3636
with:

.github/workflows/test-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
- name: Install Go
2323
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
2424
with:
25-
go-version: 1.24.9
25+
go-version: 1.24.10
2626
- name: Run tests
2727
run: make examples/test

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
echo "user-id=$(gh api "/users/${APP_BOT}" --jq .id)" >> "$GITHUB_OUTPUT"
4545
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6
4646
with:
47-
go-version: 1.24.9
47+
go-version: 1.24.10
4848
- name: Update contributors
4949
run: make update-contributors
5050

.github/workflows/weekly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
git tag "$WEEKLY_IMAGE_TAG"
3434
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
3535
with:
36-
go-version: "1.24.9"
36+
go-version: "1.24.10"
3737
cache: false
3838
# setup docker buildx
3939
- name: Set up QEMU

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
before:
44
hooks:
55
# This hook ensures that goreleaser uses the correct go version for a Pyroscope release
6-
- sh -euc 'go version | grep "go version go1.24.9 " || { echo "Unexpected go version"; exit 1; }'
6+
- sh -euc 'go version | grep "go version go1.24.10 " || { echo "Unexpected go version"; exit 1; }'
77
env:
88
# Strip debug information from the binary by default, weekly builds will have debug information
99
- GORELEASER_DEBUG_INFO_FLAGS={{ if and (index .Env "GORELEASER_STRIP_DEBUG_INFO") (eq .Env.GORELEASER_STRIP_DEBUG_INFO "false") }}{{ else }}-s -w{{ end }}

.pyroscope.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ source_code:
88
github:
99
owner: golang
1010
repo: go
11-
ref: go1.24.8
11+
ref: go1.24.10
1212
path: src

examples/golang-pgo/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.9
1+
FROM golang:1.24.10
22

33
WORKDIR /go/src/app
44
COPY . .

examples/language-sdk-instrumentation/golang-push/rideshare-alloy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.9
1+
FROM golang:1.24.10
22

33
WORKDIR /go/src/app
44
COPY . .

0 commit comments

Comments
 (0)