Skip to content

Commit

Permalink
Update golang version to 1.21.3 (#2518)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonswine committed Oct 11, 2023
1 parent a40e0ea commit 7bfe2c1
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: "1.21.2"
go-version: "1.21.3"
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.2"
go-version: "1.21.3"
cache: true
- run: yarn --frozen-lockfile
- run: make build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: "1.21.2"
go-version: "1.21.3"
cache: true
- uses: actions/setup-node@v3
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.2
go-version: 1.21.3
- 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.2
go-version: 1.21.3
- name: Go Mod
run: make check/go/mod
- name: Test
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.21.2
go-version: 1.21.3
- name: Run linter
run: make lint
- name: Check helm manifests
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.21.2
go-version: 1.21.3
- uses: actions/setup-node@v3
with:
node-version: lts/hydrogen
Expand All @@ -119,7 +119,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.21.2
go-version: 1.21.3
- uses: actions/setup-node@v3
with:
node-version: lts/hydrogen
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 @@ -25,7 +25,7 @@ jobs:
git tag "$WEEKLY_IMAGE_TAG"
- uses: actions/setup-go@v3
with:
go-version: "1.21.2"
go-version: "1.21.3"
cache: true
# 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 @@ -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.2 " || { echo "Unexpected go version"; exit 1; }"
- sh -euc "go version | grep "go version go1.21.3 " || { echo "Unexpected go version"; exit 1; }"
builds:
- env:
- CGO_ENABLED=0
Expand Down
2 changes: 1 addition & 1 deletion examples/golang-pull/static/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.2
FROM golang:1.21.3

WORKDIR /go/src/app

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

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

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

WORKDIR /go/src/app

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

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/honeycomb/Dockerfile.loadgen
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.2
FROM golang:1.21.3

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/jaeger/go/rideshare/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.2
FROM golang:1.21.3

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion examples/tracing/jaeger/go/rideshare/Dockerfile.loadgen
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.2
FROM golang:1.21.3

WORKDIR /go/src/app

Expand Down

0 comments on commit 7bfe2c1

Please sign in to comment.