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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Format
run: make fmt check/unstaged-changes
check-generated:
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Check generated files
run: make generate check/unstaged-changes
test:
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Go Mod
run: make check/go/mod
- name: Test
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Run linter
run: make lint
- name: Check helm manifests
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
# login to docker hub
- id: get-secrets
uses: grafana/shared-workflows/actions/get-vault-secrets@eb33f84481d38701f4d2c587a4817ce332784f5f
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Run Fuzz_Merge_Single
run: go test -fuzz=Fuzz_Merge_Single --fuzztime 1h -run '^$' -v ./pkg/pprof/
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- run: git fetch --force --tags
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: "1.24.9"
go-version: "1.24.10"
cache: false
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Run tests
run: make examples/test
2 changes: 1 addition & 1 deletion .github/workflows/update-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "user-id=$(gh api "/users/${APP_BOT}" --jq .id)" >> "$GITHUB_OUTPUT"
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6
with:
go-version: 1.24.9
go-version: 1.24.10
- name: Update contributors
run: make update-contributors

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
git tag "$WEEKLY_IMAGE_TAG"
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version: "1.24.9"
go-version: "1.24.10"
cache: false
# setup docker buildx
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
before:
hooks:
# This hook ensures that goreleaser uses the correct go version for a Pyroscope release
- sh -euc 'go version | grep "go version go1.24.9 " || { echo "Unexpected go version"; exit 1; }'
- sh -euc 'go version | grep "go version go1.24.10 " || { echo "Unexpected go version"; exit 1; }'
env:
# Strip debug information from the binary by default, weekly builds will have debug information
- GORELEASER_DEBUG_INFO_FLAGS={{ if and (index .Env "GORELEASER_STRIP_DEBUG_INFO") (eq .Env.GORELEASER_STRIP_DEBUG_INFO "false") }}{{ else }}-s -w{{ end }}
Expand Down
2 changes: 1 addition & 1 deletion .pyroscope.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ source_code:
github:
owner: golang
repo: go
ref: go1.24.8
ref: go1.24.10
path: src
2 changes: 1 addition & 1 deletion examples/golang-pgo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/golang-push/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/golang-push/Dockerfile.load-generator
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.9
FROM golang:1.24.10

WORKDIR /go/src/app
COPY . .
Expand Down
3 changes: 3 additions & 0 deletions tools/upgrade-go-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ git ls-files .github/workflows | xargs sed -i 's/go-version:\([ \["]\+\)\([0-9\.
# update goreleaser check
sed -i 's/go version go[0-9\.]\+/go version go'$1'/g' .goreleaser.yaml

# update .pyroscope.yaml
sed -i 's/ref: go[0-9\.]\+/ref: go'$1'/g' .pyroscope.yaml

# update all dockerfile versions, skips the elf tests from ebpf
DOCKER_FILES=$(git ls-files '**/Dockerfile*' | grep -v ebpf/symtab/elf/testdata/Dockerfile)
sed -i 's/golang:[0-9\.]\+/golang:'$1'/g' $DOCKER_FILES
Expand Down