Skip to content

Commit

Permalink
EVEREST-107 update go version to 1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
recharte committed Feb 21, 2025
1 parent 0d09e87 commit 9d04c75
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-push-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v3
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Install operator-sdk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ${{ fromJson(inputs.go-version || '["1.23.x"]') }}
go-version: ${{ fromJson(inputs.go-version || '["1.24.x"]') }}
may-fail: [ false ]

env:
Expand All @@ -27,7 +27,7 @@ jobs:
if: env.GO_VERSION != 'tip'
uses: actions/setup-go@v3
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Install development tools
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Install tools
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Build operator
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Build operator
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version: '1.24'
check-latest: true

- name: Install operator-sdk
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.23 as builder
FROM golang:1.24 as builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/percona/everest-operator

go 1.23.4
go 1.24

replace (
k8s.io/api => k8s.io/api v0.31.1
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/percona/everest-operator/tools

go 1.23.4
go 1.24

require (
github.com/BurntSushi/go-sumtype v0.0.0-20221020234012-480526a59796
Expand Down

0 comments on commit 9d04c75

Please sign in to comment.