Skip to content

Commit 3ceb83e

Browse files
committed
pin gh action go versions to 1.23
1 parent 867dcd4 commit 3ceb83e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/codeql-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v5
2525
- uses: actions/setup-go@v6
26-
with: { go-version: stable }
26+
with: { go-version: 1.23 }
2727

2828
- name: Initialize CodeQL
2929
uses: github/codeql-action/init@v4

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v5
1616
- uses: actions/setup-go@v6
17-
with: { go-version: stable }
17+
with: { go-version: 1.23 }
1818

1919
- uses: golangci/golangci-lint-action@v9
2020
with:

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v5
1616
- uses: actions/setup-go@v6
17-
with: { go-version: stable }
17+
with: { go-version: 1.23 }
1818

1919
- name: Ensure go.mod is tidy
2020
run: go mod tidy --diff
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
- uses: actions/checkout@v5
3434
- uses: actions/setup-go@v6
35-
with: { go-version: stable }
35+
with: { go-version: 1.23 }
3636

3737
- run: go mod download
3838
- run: ENVTEST_K8S_VERSION="${KUBERNETES#default}" make check-envtest
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v5
6161
- uses: actions/setup-go@v6
62-
with: { go-version: stable }
62+
with: { go-version: 1.23 }
6363

6464
- name: Start k3s
6565
uses: ./.github/actions/k3d
@@ -93,7 +93,7 @@ jobs:
9393
steps:
9494
- uses: actions/checkout@v5
9595
- uses: actions/setup-go@v6
96-
with: { go-version: stable }
96+
with: { go-version: 1.23 }
9797

9898
- name: Start k3s
9999
uses: ./.github/actions/k3d
@@ -167,7 +167,7 @@ jobs:
167167
steps:
168168
- uses: actions/checkout@v5
169169
- uses: actions/setup-go@v6
170-
with: { go-version: stable }
170+
with: { go-version: 1.23 }
171171
- uses: actions/download-artifact@v6
172172
with: { path: download }
173173

.github/workflows/trivy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747

4848
# Trivy needs a populated Go module cache to detect Go module licenses.
4949
- uses: actions/setup-go@v6
50-
with: { go-version: stable }
50+
with: { go-version: 1.23 }
5151
- run: go mod download
5252

5353
# Report success only when detected licenses are listed in [.trivyignore.yaml].

0 commit comments

Comments
 (0)