Skip to content

Commit

Permalink
Upgrade Go version in Ci to 1.22.4 (#3031)
Browse files Browse the repository at this point in the history
1.22.4 fixes an annoying toolchain version parsing issue, allowing us to
keep a Go directive in our go.mod without a patch number.
  • Loading branch information
swiatekm authored Jun 11, 2024
1 parent 75dc139 commit e8d9088
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: Ensure no changes to the CHANGELOG
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/setup-go@v5
id: setup-go
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: Cache tools
uses: actions/cache@v4
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: Cache tools
uses: actions/cache@v4
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: actions/setup-go@v5
id: setup-go
with:
go-version: "~1.22.3"
go-version: "~1.22.4"
- name: Cache tools
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: "generate release resources"
run: make release-artifacts IMG_PREFIX="ghcr.io/open-telemetry/opentelemetry-operator" VERSION=${DESIRED_VERSION}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/setup-go@v5
id: setup-go
with:
go-version: "~1.22.3"
go-version: "~1.22.4"

- name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand Down

0 comments on commit e8d9088

Please sign in to comment.