Skip to content

Commit 7723829

Browse files
authoredFeb 13, 2025··
Add support for go 1.24 and phased out support for go 1.22 (#1302)
Signed-off-by: Cosmin Cojocar <ccojocar@google.com>
1 parent 9552f03 commit 7723829

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
version: [{go: '1.22.12', golangci: 'latest'}, {go: '1.23.6', golangci: 'latest'}]
13+
version: [{go: '1.23.6', golangci: 'latest'}, {go: '1.24.0', golangci: 'latest'}]
1414
runs-on: ubuntu-latest
1515
env:
1616
GO111MODULE: on
@@ -48,7 +48,7 @@ jobs:
4848
- name: Setup go
4949
uses: actions/setup-go@v5
5050
with:
51-
go-version: '1.23.6'
51+
go-version: '1.24.0'
5252
- name: Checkout Source
5353
uses: actions/checkout@v4
5454
- uses: actions/cache@v4

‎.github/workflows/release.yml

+2-2
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.23.6'
20+
go-version: '1.24.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.23
70+
build-args: GO_VERSION=1.24
7171
- name: Sign Docker Image
7272
run: cosign sign --yes --key /tmp/cosign.key ${DIGEST} --registry-username="$secrets.DOCKER_USERNAME" --registry-password="::add-mask::$secrets.DOCKER_PASSWORD"
7373
env:

0 commit comments

Comments
 (0)
Please sign in to comment.