We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1454bb9 commit 3c6b05eCopy full SHA for 3c6b05e
.github/workflows/ci.yaml
@@ -20,8 +20,6 @@ jobs:
20
uses: actions/checkout@v5
21
- name: Setup Go
22
uses: actions/setup-go@v6
23
- with:
24
- go-version: 1.24.x
25
- name: Build
26
run: make build
27
- name: Check command examples
@@ -54,7 +52,7 @@ jobs:
54
52
strategy:
55
53
matrix:
56
os: [ubuntu-latest, macos-latest, windows-latest]
57
- go: [1.24.x, 1.23.x, 1.22.x]
+ go: [1.25.x, 1.24.x]
58
fail-fast: false
59
steps:
60
- name: Checkout code
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.24 AS builder
+FROM golang:1.25 AS builder
2
3
WORKDIR /app
4
COPY go.* ./
go.mod
@@ -1,6 +1,6 @@
module github.com/itchyny/gojq
-go 1.22
+go 1.24
5
require (
6
github.com/goccy/go-yaml v1.17.1
0 commit comments