Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

Commit

Permalink
Update golang version to 1.19.9 (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonswine authored May 3, 2023
1 parent 8613444 commit 9a5b9ae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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.19.8"
go-version: "1.19.9"
cache: true
- uses: actions/setup-node@v3
with:
Expand Down
8 changes: 4 additions & 4 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.19.8
go-version: 1.19.9
- name: Go Mod
run: make check/go/mod
- name: Format
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.19.8
go-version: 1.19.9
- name: Run linter
run: make lint
- name: Check helm manifests
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.19.8
go-version: 1.19.9
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v2
with:
go-version: 1.19.8
go-version: 1.19.9
- uses: actions/setup-node@v3
with:
node-version: 18.15.0
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.19.8"
go-version: "1.19.9"
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: phlare
before:
hooks:
# This hook ensures that goreleaser uses the correct go version for a Phlare release
- sh -euc "go version | grep "go version go1.19.8 " || { echo "Unexpected go version"; exit 1; }"
- sh -euc "go version | grep "go version go1.19.9 " || { echo "Unexpected go version"; exit 1; }"
builds:
- env:
- CGO_ENABLED=0
Expand Down

0 comments on commit 9a5b9ae

Please sign in to comment.