Skip to content

Commit

Permalink
Update golang version to 1.21.6 (#2932)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonswine committed Jan 17, 2024
1 parent 1912354 commit 2402565
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21.5"
go-version: "1.21.6"
cache: true
- run: yarn --frozen-lockfile
- run: make build
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21.5"
go-version: "1.21.6"
cache: true
- run: yarn --frozen-lockfile
- run: make build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: "1.21.5"
go-version: "1.21.6"
cache: true
- uses: actions/setup-node@v3
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Format
run: make fmt check/unstaged-changes
test:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Go Mod
run: make check/go/mod
- name: Test
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Run linter
run: make lint
- name: Check helm manifests
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.21.5
go-version: 1.21.6
- uses: actions/setup-node@v3
with:
node-version: lts/hydrogen
Expand All @@ -118,7 +118,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.21.5
go-version: 1.21.6
- uses: actions/setup-node@v3
with:
node-version: lts/hydrogen
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_ebpf.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Test
run: sudo make -C ./ebpf go/test/amd64
test_ebpf_amd64_qemu:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Install qemu
run: sudo apt-get update && sudo apt-get -y install qemu-system-x86
- name: Test
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
go-version: 1.21.6
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Install qemu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly-release.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
git tag "$WEEKLY_IMAGE_TAG"
- uses: actions/setup-go@v3
with:
go-version: "1.21.5"
go-version: "1.21.6"
cache: true
# setup docker buildx
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Expand Up @@ -2,7 +2,7 @@ project_name: pyroscope
before:
hooks:
# This hook ensures that goreleaser uses the correct go version for a Pyroscope release
- sh -euc "go version | grep "go version go1.21.5 " || { echo "Unexpected go version"; exit 1; }"
- sh -euc "go version | grep "go version go1.21.6 " || { echo "Unexpected go version"; exit 1; }"
builds:
- env:
- CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion examples/golang-pull/static/Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.21.5
FROM golang:1.21.6

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion examples/golang-push/rideshare/Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.21.5
FROM golang:1.21.6

WORKDIR /go/src/app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion examples/golang-push/rideshare/Dockerfile.load-generator
@@ -1,4 +1,4 @@
FROM golang:1.21.5
FROM golang:1.21.6

WORKDIR /go/src/app
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion examples/golang-push/simple/Dockerfile
@@ -1,4 +1,4 @@
FROM golang:1.21.5
FROM golang:1.21.6

WORKDIR /go/src/app

Expand Down

0 comments on commit 2402565

Please sign in to comment.