Skip to content

Commit 4671219

Browse files
committed
bump up to Go 1.24, drop support for Go 1.21
1 parent 039afcd commit 4671219

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Go
2222
uses: actions/setup-go@v5
2323
with:
24-
go-version: 1.23.x
24+
go-version: 1.24.x
2525
- name: Build
2626
run: make build
2727
- name: Check command examples
@@ -54,7 +54,7 @@ jobs:
5454
strategy:
5555
matrix:
5656
os: [ubuntu-latest, macos-latest, windows-latest]
57-
go: [1.23.x, 1.22.x, 1.21.x]
57+
go: [1.24.x, 1.23.x, 1.22.x]
5858
fail-fast: false
5959
steps:
6060
- name: Checkout code

Dockerfile

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

33
WORKDIR /app
44
COPY go.* ./

go.dev.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/itchyny/gojq
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/itchyny/astgen-go v0.0.0-20231113225122-e1c22b9aaf7b // indirect

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/itchyny/gojq
22

3-
go 1.21
3+
go 1.22
44

55
require (
66
github.com/google/go-cmp v0.5.4

0 commit comments

Comments
 (0)