Skip to content

Commit

Permalink
bump up to Go 1.22, drop support for Go 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
itchyny committed Feb 25, 2024
1 parent ee0e718 commit c3dbbe9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: [1.21.x, 1.20.x, 1.19.x]
go: [1.22.x, 1.21.x, 1.20.x]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 AS builder
FROM golang:1.22 AS builder

WORKDIR /app
COPY go.* ./
Expand Down
2 changes: 1 addition & 1 deletion go.dev.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/itchyny/gojq

go 1.19
go 1.20

require (
github.com/itchyny/astgen-go v0.0.0-20231113225122-e1c22b9aaf7b // indirect
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/itchyny/gojq

go 1.19
go 1.20

require (
github.com/google/go-cmp v0.5.4
Expand Down

0 comments on commit c3dbbe9

Please sign in to comment.