Skip to content

Commit 52a16a1

Browse files
committed
Update go workflows to 1.23
1 parent 007660a commit 52a16a1

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/actions/lint/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
- name: Install Go
88
uses: actions/setup-go@v5
99
with:
10-
go-version: 1.22.x
10+
go-version: 1.23.x
1111
check-latest: true
1212
- name: Get golangci-lint version and download rules
1313
shell: bash

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424
APP_NAME: "k6"
2525
DOCKER_IMAGE_ID: "grafana/k6"
2626
GHCR_IMAGE_ID: ${{ github.repository }}
27-
DEFAULT_GO_VERSION: "1.22.x"
27+
DEFAULT_GO_VERSION: "1.23.x"
2828

2929
jobs:
3030
configure:

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Go
2020
uses: actions/setup-go@v5
2121
with:
22-
go-version: 1.22.x
22+
go-version: 1.23.x
2323
check-latest: true
2424
- name: Check dependencies
2525
run: |

.github/workflows/tc39.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.22.x
25+
go-version: 1.23.x
2626
check-latest: true
2727
- name: Run tests
2828
run: |

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
go-version: [1.21.x]
17+
go-version: [1.22.x]
1818
platform: [ubuntu-latest, windows-2019]
1919
runs-on: ${{ matrix.platform }}
2020
steps:
@@ -86,7 +86,7 @@ jobs:
8686
strategy:
8787
fail-fast: false
8888
matrix:
89-
go-version: [1.22.x]
89+
go-version: [1.23.x]
9090
platform: [ubuntu-latest, windows-2019]
9191
runs-on: ${{ matrix.platform }}
9292
steps:

.github/workflows/wpt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Go
1717
uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.22.x
19+
go-version: 1.23.x
2020
check-latest: true
2121
- name: Run tests
2222
run: |

.github/workflows/xk6.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v5
2626
with:
27-
go-version: 1.22.x
27+
go-version: 1.23.x
2828
check-latest: true
2929
- name: Install Go tip
3030
if: matrix.go == 'tip'

0 commit comments

Comments
 (0)