Skip to content

Commit 0bc9094

Browse files
authored
Update golang version to 1.21.11 (#3365) (#3374)
(cherry picked from commit fd207b1)
1 parent a4971b2 commit 0bc9094

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Go
2626
uses: actions/setup-go@v4
2727
with:
28-
go-version: "1.21.10"
28+
go-version: "1.21.11"
2929
cache: true
3030
- run: yarn --frozen-lockfile
3131
- run: make build
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install Go
5656
uses: actions/setup-go@v4
5757
with:
58-
go-version: "1.21.10"
58+
go-version: "1.21.11"
5959
cache: true
6060
- run: yarn --frozen-lockfile
6161
- run: make build

.github/workflows/fuzzer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- name: Install Go
1414
uses: actions/setup-go@v4
1515
with:
16-
go-version: 1.21.10
16+
go-version: 1.21.11
1717
- name: Run Fuzz_Merge_Single
1818
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
@@ -28,7 +28,7 @@ jobs:
2828
- run: git fetch --force --tags
2929
- uses: actions/setup-go@v3
3030
with:
31-
go-version: "1.21.10"
31+
go-version: "1.21.11"
3232
cache: true
3333
- uses: actions/setup-node@v3
3434
with:

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Go
2323
uses: actions/setup-go@v4
2424
with:
25-
go-version: 1.21.10
25+
go-version: 1.21.11
2626
- name: Format
2727
run: make fmt check/unstaged-changes
2828
test:
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Go
3434
uses: actions/setup-go@v4
3535
with:
36-
go-version: 1.21.10
36+
go-version: 1.21.11
3737
- name: Go Mod
3838
run: make check/go/mod
3939
- name: Test
@@ -46,7 +46,7 @@ jobs:
4646
- name: Install Go
4747
uses: actions/setup-go@v4
4848
with:
49-
go-version: 1.21.10
49+
go-version: 1.21.11
5050
- name: Run linter
5151
run: make lint
5252
- name: Check helm manifests
@@ -96,7 +96,7 @@ jobs:
9696
- name: Set up go
9797
uses: actions/setup-go@v2
9898
with:
99-
go-version: 1.21.10
99+
go-version: 1.21.11
100100
- uses: actions/setup-node@v3
101101
with:
102102
node-version: lts/hydrogen
@@ -118,7 +118,7 @@ jobs:
118118
- name: Set up go
119119
uses: actions/setup-go@v2
120120
with:
121-
go-version: 1.21.10
121+
go-version: 1.21.11
122122
- uses: actions/setup-node@v3
123123
with:
124124
node-version: lts/hydrogen

.github/workflows/test_ebpf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Go
2828
uses: actions/setup-go@v4
2929
with:
30-
go-version: 1.21.10
30+
go-version: 1.21.11
3131
- name: Test
3232
run: sudo make -C ./ebpf go/test/amd64
3333
test_ebpf_qemu:
@@ -82,7 +82,7 @@ jobs:
8282
- name: Install Go
8383
uses: actions/setup-go@v4
8484
with:
85-
go-version: 1.21.10
85+
go-version: 1.21.11
8686
- name: Install qemu
8787
run: sudo apt-get update && sudo apt-get -y install qemu-system-x86 qemu-system-aarch64
8888
- name: Build tests

.github/workflows/weekly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
git tag "$WEEKLY_IMAGE_TAG"
2626
- uses: actions/setup-go@v3
2727
with:
28-
go-version: "1.21.10"
28+
go-version: "1.21.11"
2929
cache: true
3030
# setup docker buildx
3131
- name: Set up QEMU

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project_name: pyroscope
22
before:
33
hooks:
44
# This hook ensures that goreleaser uses the correct go version for a Pyroscope release
5-
- sh -euc "go version | grep "go version go1.21.10 " || { echo "Unexpected go version"; exit 1; }"
5+
- sh -euc "go version | grep "go version go1.21.11 " || { echo "Unexpected go version"; exit 1; }"
66
builds:
77
- env:
88
- CGO_ENABLED=0

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.21.10
1+
FROM golang:1.21.11
22

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

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

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

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

examples/language-sdk-instrumentation/golang-push/rideshare/Dockerfile.load-generator

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

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

examples/language-sdk-instrumentation/golang-push/simple/Dockerfile

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

33
WORKDIR /go/src/app
44

0 commit comments

Comments
 (0)