Skip to content

Commit 872fafd

Browse files
authored
Merge pull request #35 from goccy/update-go-deps
Update go modules
2 parents 234d8c6 + 3298639 commit 872fafd

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

Diff for: .github/workflows/go.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ "ubuntu-latest", "macos-latest" ]
13-
go-version: [ "1.17" ]
13+
go-version: [ "1.21" ]
1414
runs-on: ${{ matrix.os }}
1515
steps:
16+
- name: checkout
17+
uses: actions/checkout@v4
1618
- name: setup Go ${{ matrix.go-version }}
17-
uses: actions/setup-go@v2
19+
uses: actions/setup-go@v4
1820
with:
1921
go-version: ${{ matrix.go-version }}
20-
- name: checkout
21-
uses: actions/checkout@v2
2222
- name: test
2323
run: go test -race -v ./ -count=1
2424
env:

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.8-bullseye
1+
FROM golang:1.21-bookworm
22

33
RUN apt-get update && apt-get install -y --no-install-recommends clang
44

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/goccy/go-zetasql
22

3-
go 1.17
3+
go 1.19

Diff for: internal/cmd/generator/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/goccy/go-zetasql/internal/cmd/generator
22

3-
go 1.17
3+
go 1.19
44

55
require (
66
github.com/bazelbuild/buildtools v0.0.0-20220211113555-f1ead6bc540d
@@ -11,6 +11,6 @@ require (
1111
github.com/fatih/color v1.10.0 // indirect
1212
github.com/mattn/go-colorable v0.1.12 // indirect
1313
github.com/mattn/go-isatty v0.0.14 // indirect
14-
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 // indirect
14+
golang.org/x/sys v0.15.0 // indirect
1515
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
1616
)

Diff for: internal/cmd/generator/go.sum

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7w
7474
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
7575
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
7676
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
77-
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6 h1:foEbQz/B0Oz6YIqu/69kfXPYeFQAuuMYFkjaqXzl5Wo=
7877
golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
78+
golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc=
79+
golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
7980
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
8081
golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=
8182
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=

Diff for: internal/cmd/updater/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.17.8-bullseye
1+
FROM golang:1.21-bookworm
22

33
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates gnupg
44
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -

Diff for: internal/cmd/updater/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/goccy/go-zetasql/internal/cmd/updater
22

3-
go 1.17
3+
go 1.19
44

55
require github.com/otiai10/copy v1.7.0 // indirect

0 commit comments

Comments
 (0)