Skip to content

Commit

Permalink
Go1.18 (#7)
Browse files Browse the repository at this point in the history
* 🆙 Go 1.18

* 🆙 update modules

* 🔧 fix build tag
  • Loading branch information
murosan authored May 28, 2022
1 parent abf14e9 commit 60b0c49
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 51 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set up Go 1.15
- name: Set up Go 1.18
uses: actions/setup-go@v1
with:
go-version: 1.15
go-version: 1.18
id: go

- name: Check out code into the Go module directory
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.13
FROM golang:1.18

ENV GO111MODULE=on TZ=Asia/Tokyo
ENV TZ=Asia/Tokyo

WORKDIR /go/src/shogi-board-server

Expand Down
35 changes: 26 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
module github.com/murosan/shogi-board-server

go 1.15
go 1.18

require (
github.com/labstack/echo/v4 v4.1.16
github.com/labstack/echo/v4 v4.7.2
github.com/murosan/goutils v0.0.0-20190506160604-a2da7259cdd8
go.uber.org/zap v1.21.0
gopkg.in/yaml.v2 v2.4.0
honnef.co/go/tools v0.3.2
)

require (
github.com/BurntSushi/toml v1.1.0 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pkg/errors v0.9.1 // indirect
go.uber.org/zap v1.14.1
golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/exp/typeparams v0.0.0-20220518171630-0b5c67f07fdf // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
golang.org/x/sys v0.0.0-20200331124033-c3d80250170d // indirect
golang.org/x/tools v0.0.0-20200401192744-099440627f01 // indirect
gopkg.in/yaml.v2 v2.2.8
honnef.co/go/tools v0.0.1-2020.1.3
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20220526153639-5463443f8c37 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect
)
Loading

0 comments on commit 60b0c49

Please # to comment.