Skip to content

Commit 3c6b05e

Browse files
committed
update Go requirement to 1.24
1 parent 1454bb9 commit 3c6b05e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
uses: actions/checkout@v5
2121
- name: Setup Go
2222
uses: actions/setup-go@v6
23-
with:
24-
go-version: 1.24.x
2523
- name: Build
2624
run: make build
2725
- name: Check command examples
@@ -54,7 +52,7 @@ jobs:
5452
strategy:
5553
matrix:
5654
os: [ubuntu-latest, macos-latest, windows-latest]
57-
go: [1.24.x, 1.23.x, 1.22.x]
55+
go: [1.25.x, 1.24.x]
5856
fail-fast: false
5957
steps:
6058
- 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.24 AS builder
1+
FROM golang:1.25 AS builder
22

33
WORKDIR /app
44
COPY go.* ./

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.22
3+
go 1.24
44

55
require (
66
github.com/goccy/go-yaml v1.17.1

0 commit comments

Comments
 (0)