Skip to content

Commit c0af7b6

Browse files
chore: bump Go to v1.26 (#7466)
1 parent 72ac479 commit c0af7b6

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
- mac
3232
- windows
3333
go:
34-
- '1.25'
34+
- '1.26'
3535

3636
include:
3737
# Set the minimum Go patch version for the given Go minor
3838
# Usable via ${{ matrix.GO_SEMVER }}
39-
- go: '1.25'
40-
GO_SEMVER: '~1.25.0'
39+
- go: '1.26'
40+
GO_SEMVER: '~1.26.0'
4141

4242
# Set some variables per OS, usable via ${{ matrix.VAR }}
4343
# OS_LABEL: the VM label from GitHub Actions (see https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories)
@@ -235,7 +235,7 @@ jobs:
235235
- name: Install Go
236236
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
237237
with:
238-
go-version: "~1.25"
238+
go-version: "~1.26"
239239
check-latest: true
240240
- name: Install xcaddy
241241
run: |

.github/workflows/cross-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636
- 'darwin'
3737
- 'netbsd'
3838
go:
39-
- '1.25'
39+
- '1.26'
4040

4141
include:
4242
# Set the minimum Go patch version for the given Go minor
4343
# Usable via ${{ matrix.GO_SEMVER }}
44-
- go: '1.25'
45-
GO_SEMVER: '~1.25.0'
44+
- go: '1.26'
45+
GO_SEMVER: '~1.26.0'
4646

4747
runs-on: ubuntu-latest
4848
permissions:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5353
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
5454
with:
55-
go-version: '~1.25'
55+
go-version: '~1.26'
5656
check-latest: true
5757

5858
- name: golangci-lint
@@ -80,7 +80,7 @@ jobs:
8080
- name: govulncheck
8181
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
8282
with:
83-
go-version-input: '~1.25.0'
83+
go-version-input: '~1.26.0'
8484
check-latest: true
8585

8686
dependency-review:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,13 @@ jobs:
334334
os:
335335
- ubuntu-latest
336336
go:
337-
- '1.25'
337+
- '1.26'
338338

339339
include:
340340
# Set the minimum Go patch version for the given Go minor
341341
# Usable via ${{ matrix.GO_SEMVER }}
342-
- go: '1.25'
343-
GO_SEMVER: '~1.25.0'
342+
- go: '1.26'
343+
GO_SEMVER: '~1.26.0'
344344

345345
runs-on: ${{ matrix.os }}
346346
# https://github.com/sigstore/cosign/issues/1258#issuecomment-1002251233

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ require (
170170
go.uber.org/multierr v1.11.0 // indirect
171171
golang.org/x/mod v0.30.0 // indirect
172172
golang.org/x/sys v0.39.0
173-
golang.org/x/text v0.32.0 // indirect
173+
golang.org/x/text v0.32.0
174174
golang.org/x/tools v0.39.0 // indirect
175175
google.golang.org/grpc v1.77.0 // indirect
176176
google.golang.org/protobuf v1.36.10 // indirect

0 commit comments

Comments
 (0)