Skip to content

Commit 18135b4

Browse files
authored
Update to Go 1.23.0 (#1183)
Change-Id: I11a6402e85ac543305e8bad4ea35239779424dd6 Signed-off-by: Cosmin Cojocar <[email protected]>
1 parent 91c708a commit 18135b4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
version: [{go: '1.21.12', golangci: 'latest'}, {go: '1.22.5', golangci: 'latest'}]
13+
version: [{go: '1.22.6', golangci: 'latest'}, {go: '1.23.0', golangci: 'latest'}]
1414
runs-on: ubuntu-latest
1515
env:
1616
GO111MODULE: on
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup go
4747
uses: actions/setup-go@v5
4848
with:
49-
go-version: '1.22.5'
49+
go-version: '1.23.0'
5050
- name: Checkout Source
5151
uses: actions/checkout@v4
5252
- uses: actions/cache@v4

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.22.5'
20+
go-version: '1.23.0'
2121
- name: Install Cosign
2222
uses: sigstore/cosign-installer@v3
2323
with:
@@ -67,7 +67,7 @@ jobs:
6767
tags: ${{steps.meta.outputs.tags}}
6868
labels: ${{steps.meta.outputs.labels}}
6969
push: true
70-
build-args: GO_VERSION=1.22
70+
build-args: GO_VERSION=1.23
7171
- name: Sign Docker Image
7272
run: cosign sign --yes --key /tmp/cosign.key ${DIGEST}
7373
env:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ GOSEC ?= $(GOBIN)/gosec
1717
GINKGO ?= $(GOBIN)/ginkgo
1818
GO_MINOR_VERSION = $(shell $(GO) version | cut -c 14- | cut -d' ' -f1 | cut -d'.' -f2)
1919
GOVULN_MIN_VERSION = 17
20-
GO_VERSION = 1.22
20+
GO_VERSION = 1.23
2121

2222
default:
2323
$(MAKE) build

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ require (
5858
google.golang.org/protobuf v1.34.2 // indirect
5959
)
6060

61-
go 1.21
61+
go 1.22
6262

63-
toolchain go1.23.0
63+
toolchain go1.22.0

0 commit comments

Comments
 (0)