Skip to content

Commit 111c60e

Browse files
committed
fix(go): upgrade go version to 1.23
1 parent b3fa363 commit 111c60e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.22
20+
go-version: 1.23
2121
id: go
2222
# Look for a CLI that's made for this PR
2323
- name: Fetch built CLI
@@ -50,7 +50,7 @@ jobs:
5050
- name: Set up Go
5151
uses: actions/setup-go@v5
5252
with:
53-
go-version: 1.22
53+
go-version: 1.23
5454
- name: Check out the code
5555
uses: actions/checkout@v4
5656
- name: Fetch built CLI

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
golangci:
1818
strategy:
1919
matrix:
20-
go: [ '1.20', '1.21', '1.22' ]
20+
go: [ '1.21', '1.22', '1.23' ]
2121
os: [ ubuntu-latest, windows-latest ]
2222
permissions:
2323
contents: read # for actions/checkout to fetch code

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 0 # it is required fot the changelog to work correctly
1515
- uses: actions/setup-go@v5
1616
with:
17-
go-version: 1.22
17+
go-version: 1.23
1818
- name: Run GoReleaser
1919
uses: goreleaser/goreleaser-action@v6
2020
env:

hack/include/go.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
GO_SUPPORTED_VERSIONS ?= 1.18|1.19|1.20|1.21|1.22
15+
GO_SUPPORTED_VERSIONS ?= 1.18|1.19|1.20|1.21|1.22|1.23
1616

1717
.PHONY: go.build.verify
1818
go.build.verify:

0 commit comments

Comments
 (0)