Skip to content

Commit 45bd80e

Browse files
committed
update go version
1 parent 23b9308 commit 45bd80e

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Setup go
3636
uses: actions/setup-go@v5
3737
with:
38-
go-version: "1.22"
38+
go-version: "1.23"
3939
check-latest: true
4040
- name: Checkout repository
4141
uses: actions/checkout@v4

.github/workflows/crdgen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
crdgen:
1515
strategy:
1616
matrix:
17-
go-version: ["1.21", "1.22"]
17+
go-version: ["1.22", "1.23"]
1818
os: [ubuntu-latest]
1919
name: CRDs are Generated
2020
runs-on: ${{ matrix.os }}

.github/workflows/golangci.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
go-version: ["1.21.x", "1.22.x"]
18+
go-version: ['1.22.x', '1.23.x']
1919
os: [ubuntu-latest, windows-latest]
2020
name: Lint
2121
runs-on: ${{ matrix.os }}
2222
steps:
23-
- uses: actions/setup-go@v5
24-
with:
25-
go-version: ${{ matrix.go-version }}
26-
- uses: actions/checkout@v4
27-
with:
28-
fetch-depth: 0
29-
- name: golangci-lint
30-
uses: golangci/golangci-lint-action@v5
31-
with:
32-
version: v1.55
33-
args: --new-from-rev=origin/release/v1.5 --config=.golangci.yml --timeout=25m
23+
- uses: actions/setup-go@v5
24+
with:
25+
go-version: ${{ matrix.go-version }}
26+
- uses: actions/checkout@v4
27+
with:
28+
fetch-depth: 0
29+
- name: golangci-lint
30+
uses: golangci/golangci-lint-action@v6
31+
with:
32+
version: v1.61
33+
args: --new-from-rev=origin/master --config=.golangci.yml --timeout=25m

0 commit comments

Comments
 (0)