Skip to content

Commit c945302

Browse files
committed
Add support for go version 1.25.0
Change-Id: Ia694411be7e861177970485cc6185af5a6944686 Signed-off-by: Cosmin Cojocar <[email protected]>
1 parent ef7adab commit c945302

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
version: [{go-version: '1.23.12', golangci: 'latest'}, {go-version: '1.24.6', golangci: 'latest'}]
13+
version:
14+
- go-version: '1.24.6'
15+
golangci: 'latest'
16+
- go-version: '1.25.0'
17+
golangci: 'latest'
1418
runs-on: ubuntu-latest
1519
env:
1620
GO111MODULE: on
@@ -48,7 +52,7 @@ jobs:
4852
- name: Setup go
4953
uses: actions/setup-go@v5
5054
with:
51-
go-version: '1.24.6'
55+
go-version: '1.25.0'
5256
- name: Checkout Source
5357
uses: actions/checkout@v4
5458
- uses: actions/cache@v4

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: '1.24.6'
20+
go-version: '1.25.0'
2121
- name: Install Cosign
2222
uses: sigstore/cosign-installer@v3
2323
with:
24-
cosign-release: 'v2.5.0'
24+
cosign-release: 'v2.5.3'
2525
- name: Store Cosign private key in a file
2626
run: 'echo "$COSIGN_KEY" > /tmp/cosign.key'
2727
shell: bash
@@ -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.24
70+
build-args: GO_VERSION=1.25
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:

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.24
20+
GO_VERSION = 1.25
2121
LDFLAGS = -ldflags "\
2222
-X 'main.Version=$(shell git describe --tags --always)' \
2323
-X 'main.GitTag=$(shell git describe --tags --abbrev=0)' \

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ require (
5656
google.golang.org/protobuf v1.36.6 // indirect
5757
)
5858

59-
go 1.23.0
59+
go 1.24.0

0 commit comments

Comments
 (0)