Skip to content

Commit 8fc7707

Browse files
committed
chore: go1.22.0-rc1
1 parent b2901be commit 8fc7707

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.github/workflows/documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build and deploy documentation
1212
runs-on: ubuntu-latest
1313
env:
14-
GO_VERSION: '1.21'
14+
GO_VERSION: '1.22.0-rc1'
1515
NODE_VERSION: '20.x'
1616
CGO_ENABLED: 0
1717

.github/workflows/post-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# ex:
1919
# - 1.18beta1 -> 1.18.0-beta.1
2020
# - 1.18rc1 -> 1.18.0-rc.1
21-
go-version: '1.21'
21+
go-version: '1.22.0-rc1'
2222

2323
- name: Update GitHub action config
2424
run: make assets/github-action-config.json

.github/workflows/pr-documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Build documentation
1010
runs-on: ubuntu-latest
1111
env:
12-
GO_VERSION: '1.21'
12+
GO_VERSION: '1.22.0-rc1'
1313
NODE_VERSION: '20.x'
1414
CGO_ENABLED: 0
1515

.github/workflows/pr-extra.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# ex:
1818
# - 1.18beta1 -> 1.18.0-beta.1
1919
# - 1.18rc1 -> 1.18.0-rc.1
20-
go-version: '1.21'
20+
go-version: '1.22.0-rc1'
2121
- name: Run go list
2222
run: go list -json -m all > go.list
2323
- name: Nancy

.github/workflows/pr.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77

88
env:
9-
GO_VERSION: '1.21'
9+
GO_VERSION: '1.22.0-rc1'
1010

1111
jobs:
1212
# Check if there is any dirty change for go mod tidy
@@ -41,7 +41,9 @@ jobs:
4141
# ex:
4242
# - 1.18beta1 -> 1.18.0-beta.1
4343
# - 1.18rc1 -> 1.18.0-rc.1
44-
go-version: ${{ env.GO_VERSION }}
44+
# TODO(ldez) must be changed after the first release of golangci-lint with go1.22
45+
# go-version: ${{ env.GO_VERSION }}
46+
go-version: '1.21'
4547
- name: lint
4648
uses: golangci/[email protected]
4749
with:
@@ -88,8 +90,8 @@ jobs:
8890
strategy:
8991
matrix:
9092
golang:
91-
- '1.20'
9293
- '1.21'
94+
- '1.22.0-rc1'
9395
steps:
9496
- uses: actions/checkout@v4
9597
- name: Install Go

.github/workflows/tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# ex:
1717
# - 1.18beta1 -> 1.18.0-beta.1
1818
# - 1.18rc1 -> 1.18.0-rc.1
19-
go-version: '1.21'
19+
go-version: '1.22.0-rc1'
2020
- name: Unshallow
2121
run: git fetch --prune --unshallow
2222

@@ -46,7 +46,7 @@ jobs:
4646
# ex:
4747
# - 1.18beta1 -> 1.18.0-beta.1
4848
# - 1.18rc1 -> 1.18.0-rc.1
49-
go-version: '1.21'
49+
go-version: '1.22.0-rc1'
5050

5151
- name: Unshallow
5252
run: git fetch --prune --unshallow

0 commit comments

Comments
 (0)