File tree 7 files changed +12
-11
lines changed
7 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ jobs:
10
10
strategy :
11
11
matrix :
12
12
os : [ "ubuntu-latest", "macos-latest" ]
13
- go-version : [ "1.17 " ]
13
+ go-version : [ "1.21 " ]
14
14
runs-on : ${{ matrix.os }}
15
15
steps :
16
+ - name : checkout
17
+ uses : actions/checkout@v4
16
18
- name : setup Go ${{ matrix.go-version }}
17
- uses : actions/setup-go@v2
19
+ uses : actions/setup-go@v4
18
20
with :
19
21
go-version : ${{ matrix.go-version }}
20
- - name : checkout
21
- uses : actions/checkout@v2
22
22
- name : test
23
23
run : go test -race -v ./ -count=1
24
24
env :
Original file line number Diff line number Diff line change 1
- FROM golang:1.17.8-bullseye
1
+ FROM golang:1.21-bookworm
2
2
3
3
RUN apt-get update && apt-get install -y --no-install-recommends clang
4
4
Original file line number Diff line number Diff line change 1
1
module github.com/goccy/go-zetasql
2
2
3
- go 1.17
3
+ go 1.19
Original file line number Diff line number Diff line change 1
1
module github.com/goccy/go-zetasql/internal/cmd/generator
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/bazelbuild/buildtools v0.0.0-20220211113555-f1ead6bc540d
@@ -11,6 +11,6 @@ require (
11
11
github.com/fatih/color v1.10.0 // indirect
12
12
github.com/mattn/go-colorable v0.1.12 // indirect
13
13
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
15
15
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
16
16
)
Original file line number Diff line number Diff line change @@ -74,8 +74,9 @@ golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7w
74
74
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
75
75
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f /go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs =
76
76
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 =
78
77
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 =
79
80
golang.org/x/text v0.3.0 /go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ =
80
81
golang.org/x/text v0.3.2 /go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk =
81
82
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e /go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ =
Original file line number Diff line number Diff line change 1
- FROM golang:1.17.8-bullseye
1
+ FROM golang:1.21-bookworm
2
2
3
3
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates gnupg
4
4
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
Original file line number Diff line number Diff line change 1
1
module github.com/goccy/go-zetasql/internal/cmd/updater
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require github.com/otiai10/copy v1.7.0 // indirect
You can’t perform that action at this time.
0 commit comments