Skip to content

Commit de751ca

Browse files
authored
[Automation] Bump Go version to 1.24.0 (#22)
The main generated module arbitrarily remains at 2 minors behind the latest Go release. The rest of the modules and CI are working with Go 1.24.
1 parent d43d5e4 commit de751ca

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/generate.yml

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

2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.23.x'
23+
go-version: '1.24.x'
2424
cache-dependency-path: ./internal/generator/go.sum
2525

2626
- name: generate

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.23.x'
23+
go-version: '1.24.x'
2424

2525
- name: Test
2626
run: go test ./...
@@ -40,7 +40,7 @@ jobs:
4040

4141
- uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.23.x'
43+
go-version: '1.24.x'
4444

4545
- name: Test
4646
working-directory: ./internal/generator

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: '1.23.x'
21+
go-version: '1.24.x'
2222
cache: false
2323

2424
- name: golangci-lint
@@ -40,7 +40,7 @@ jobs:
4040

4141
- uses: actions/setup-go@v5
4242
with:
43-
go-version: '1.23.x'
43+
go-version: '1.24.x'
4444

4545
- name: Run go mod tidy
4646
run: go mod tidy
@@ -60,7 +60,7 @@ jobs:
6060

6161
- uses: actions/setup-go@v5
6262
with:
63-
go-version: '1.23.x'
63+
go-version: '1.24.x'
6464

6565
- name: Check headers
6666
run: go run github.com/elastic/go-licenser@latest -d

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/andrewkroh/go-ingest-node
22

3-
go 1.21
3+
go 1.22

internal/generator/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/andrewkroh/go-ingest-node/internal/generator
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/dave/jennifer v1.7.1

internal/jsonschema/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/andrewkroh/go-ingest-node/internal/jsonschema
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/andrewkroh/go-ingest-node v0.0.0-20231010172129-deae70ea76d8

internal/jsonschema/go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go 1.23
1+
go 1.24
22

33
use (
44
../..

0 commit comments

Comments
 (0)