Skip to content

Commit d70b064

Browse files
committed
Use golang 1.23 in CI
1 parent 0ab4b63 commit d70b064

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Lint & test Go code
2626
runs-on: [ self-hosted, Linux ]
2727
container:
28-
image: golang:1.19
28+
image: golang:1.23
2929

3030
steps:
3131
- name: Dump github context
@@ -87,7 +87,7 @@ jobs:
8787

8888
- uses: actions/setup-go@v3
8989
with:
90-
go-version: "^1.19.13"
90+
go-version: "^1.23.4"
9191

9292
- name: Run Python tests
9393
run: make test-py

.github/workflows/push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Lint & test Go code
2626
runs-on: [ self-hosted, Linux ]
2727
container:
28-
image: golang:1.19
28+
image: golang:1.23
2929

3030
steps:
3131
- name: Dump github context
@@ -89,7 +89,7 @@ jobs:
8989

9090
- uses: actions/setup-go@v3
9191
with:
92-
go-version: "^1.19.13"
92+
go-version: "^1.23.4"
9393

9494
- name: Run Python tests
9595
run: make test-py

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Lint & test Go code
2525
runs-on: [ self-hosted, Linux ]
2626
container:
27-
image: golang:1.19
27+
image: golang:1.23
2828

2929
steps:
3030
- name: Dump github context
@@ -88,7 +88,7 @@ jobs:
8888

8989
- uses: actions/setup-go@v3
9090
with:
91-
go-version: "^1.19.13"
91+
go-version: "^1.23.4"
9292

9393
- name: Run Python tests
9494
run: make test-py

0 commit comments

Comments
 (0)