Skip to content

Commit

Permalink
[chore] require Go 1.22 (#2747)
Browse files Browse the repository at this point in the history
  • Loading branch information
swiatekm-sumo committed Mar 11, 2024
1 parent 0a4182b commit 2409359
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yaml
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.21.1"
go-version: "~1.22.1"

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

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.21.3"
go-version: "~1.22.0"
- name: Cache tools
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-images.yaml
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '~1.21.3'
go-version: '~1.22.1'

- name: Unshallow
run: git fetch --prune --unshallow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-operator-opamp-bridge.yaml
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '~1.21.3'
go-version: '~1.22.1'

# TODO: We're currently not using this. Should we?
- name: Read version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-target-allocator.yaml
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '~1.21.3'
go-version: '~1.22.1'

# TODO: We're currently not using this. Should we?
- name: Read version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.21.1"
go-version: "~1.22.1"

- 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
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "~1.21.1"
go-version: "~1.22.1"

- name: Check out code into the Go module directory
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,6 +1,6 @@
module github.com/open-telemetry/opentelemetry-operator

go 1.21
go 1.22

retract v1.51.0

Expand Down

0 comments on commit 2409359

Please sign in to comment.