Skip to content

Commit a6868c3

Browse files
authored
Use Go 1.25 (#46)
Signed-off-by: 1gtm <[email protected]>
1 parent 0e9308b commit a6868c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
name: Build
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- name: Set up Go 1.24
21+
- name: Set up Go 1.25
2222
uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.24'
24+
go-version: '1.25'
2525
id: go
2626

2727
- name: Check out code into the Go module directory

.github/workflows/cve-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: '1.24'
22+
go-version: '1.25'
2323

2424
- name: Prepare git
2525
env:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
6161
BASEIMAGE_PROD ?= gcr.io/distroless/static-debian12
6262
BASEIMAGE_DBG ?= debian:12
6363

64-
GO_VERSION ?= 1.24
64+
GO_VERSION ?= 1.25
6565
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
66-
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.11.0
66+
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.13.0
6767

6868
OUTBIN = bin/$(OS)_$(ARCH)/$(BIN)
6969
ifeq ($(OS),windows)

0 commit comments

Comments
 (0)