File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ BIN_PLATFORMS := $(DOCKER_PLATFORMS) darwin/amd64
5454OS := $(if $(GOOS ) ,$(GOOS ) ,$(shell go env GOOS) )
5555ARCH := $(if $(GOARCH ) ,$(GOARCH ) ,$(shell go env GOARCH) )
5656
57- GO_VERSION ?= 1.20
57+ GO_VERSION ?= 1.25
5858BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION )
5959
6060OUTBIN = 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 $@
You can’t perform that action at this time.
0 commit comments