Skip to content

Commit d7104cf

Browse files
committed
Use Go 1.25
Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent c68af6d commit d7104cf

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121

22-
- name: Set up Go 1.23
22+
- name: Set up Go 1.25
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.23'
25+
go-version: '1.25'
2626
id: go
2727

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

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
- name: Set up QEMU
2828
id: qemu
2929
uses: docker/setup-qemu-action@v3
30+
with:
31+
cache-image: false
3032

3133
- name: Set up Docker Buildx
3234
uses: docker/setup-buildx-action@v3

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) darwin/amd64
5454
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
5555
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))
5656

57-
GO_VERSION ?= 1.20
57+
GO_VERSION ?= 1.25
5858
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
5959

6060
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
@@ -219,7 +219,7 @@ lint: $(BUILD_DIRS)
219219
--env GO111MODULE=on \
220220
--env GOFLAGS="-mod=vendor" \
221221
$(BUILD_IMAGE) \
222-
golangci-lint run --enable $(ADDTL_LINTERS) --deadline=10m --skip-files="generated.*\.go$\" --skip-dirs-use-default
222+
golangci-lint run --enable $(ADDTL_LINTERS) --deadline=10m --exclude-files="generated.*\.go$\" --exclude-dirs-use-default
223223

224224
$(BUILD_DIRS):
225225
@mkdir -p $@

0 commit comments

Comments
 (0)