Skip to content

Commit a55cd86

Browse files
author
Martin Linkhorst
committed
update to golang 1.25 in github actions as well
Signed-off-by: Martin Linkhorst <martin.linkhorst@zalando.de>
1 parent dbafc20 commit a55cd86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v4
88
- uses: actions/setup-go@v5
99
with:
10-
go-version: '^1.24'
10+
go-version: '^1.25'
1111
- run: go version
1212
- run: go install github.com/mattn/goveralls@latest
1313
- run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ clean:
2222
rm -rf $(GENERATED)
2323

2424
test: $(GENERATED)
25-
GOTOOLCHAIN=go1.25.0+auto go test -v -coverprofile=profile.cov $(GOPKGS)
25+
go test -v -coverprofile=profile.cov $(GOPKGS)
2626

2727
lint:
2828
golangci-lint run ./...

0 commit comments

Comments
 (0)