Skip to content

Commit 5da80de

Browse files
committed
fix(ci): Bump Go version also in GitHub Actions
1 parent 5bdf72e commit 5da80de

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-go@v5
1717
with:
18-
go-version: 1.24.1
18+
go-version: 1.25.0
1919
- run: go build -trimpath -ldflags '-s -w -X main.Version=development' -o vault-plugin-harbor ./cmd/vault-plugin-harbor/main.go

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.24.1
21+
go-version: 1.25.0
2222
- name: golangci-lint
2323
uses: golangci/golangci-lint-action@v8
2424
with:

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v4
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: 1.24.1
21+
go-version: 1.25.0
2222
- name: Setup Kind
2323
uses: helm/kind-action@v1
2424
- name: Setup Helm

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- run: git fetch --prune --unshallow
2020
- uses: actions/setup-go@v5
2121
with:
22-
go-version: 1.24.1
22+
go-version: 1.25.0
2323
- uses: goreleaser/goreleaser-action@v6
2424
with:
2525
version: latest

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.24.1
20+
go-version: 1.25.0
2121
- run: make init
2222
- run: make fmt
2323
- run: make staticcheck

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2"
22
run:
3-
go: "1.24"
3+
go: "1.25"
44
linters:
55
default: none
66
enable:

0 commit comments

Comments
 (0)