Skip to content

Commit 2402565

Browse files
authored
Update golang version to 1.21.6 (#2932)
1 parent 1912354 commit 2402565

File tree

10 files changed

+17
-17
lines changed

10 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.5"
28+
go-version: "1.21.6"
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.5"
58+
go-version: "1.21.6"
5959
cache: true
6060
- run: yarn --frozen-lockfile
6161
- run: make build

.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.5"
31+
go-version: "1.21.6"
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.5
25+
go-version: 1.21.6
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.5
36+
go-version: 1.21.6
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.5
49+
go-version: 1.21.6
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.5
99+
go-version: 1.21.6
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.5
121+
go-version: 1.21.6
122122
- uses: actions/setup-node@v3
123123
with:
124124
node-version: lts/hydrogen

.github/workflows/test_ebpf.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v4
2626
with:
27-
go-version: 1.21.5
27+
go-version: 1.21.6
2828
- name: Test
2929
run: sudo make -C ./ebpf go/test/amd64
3030
test_ebpf_amd64_qemu:
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install Go
3636
uses: actions/setup-go@v4
3737
with:
38-
go-version: 1.21.5
38+
go-version: 1.21.6
3939
- name: Install qemu
4040
run: sudo apt-get update && sudo apt-get -y install qemu-system-x86
4141
- name: Test
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install Go
4949
uses: actions/setup-go@v4
5050
with:
51-
go-version: 1.21.5
51+
go-version: 1.21.6
5252
- name: Set up QEMU
5353
uses: docker/setup-qemu-action@v2
5454
- name: Install qemu

.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.5"
28+
go-version: "1.21.6"
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.5 " || { echo "Unexpected go version"; exit 1; }"
5+
- sh -euc "go version | grep "go version go1.21.6 " || { echo "Unexpected go version"; exit 1; }"
66
builds:
77
- env:
88
- CGO_ENABLED=0

examples/golang-pull/static/Dockerfile

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

33
WORKDIR /go/src/app
44

examples/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.5
1+
FROM golang:1.21.6
22

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

examples/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.5
1+
FROM golang:1.21.6
22

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

examples/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.5
1+
FROM golang:1.21.6
22

33
WORKDIR /go/src/app
44

0 commit comments

Comments
 (0)