Skip to content

Commit 2644224

Browse files
author
Konstantinos Bairaktaris
committed
Upgrade to Go 1.17
1 parent 0467f0a commit 2644224

File tree

4 files changed

+39
-6
lines changed

4 files changed

+39
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GO111MODULE: "on"
1313
strategy:
1414
matrix:
15-
go-version: [1.16.x]
15+
go-version: [1.17.x]
1616
os: [ubuntu-latest, macos-latest, windows-latest]
1717
runs-on: ${{ matrix.os }}
1818
steps:

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} golang:1.16.0-alpine AS build
1+
FROM --platform=${BUILDPLATFORM} golang:1.17.0-alpine AS build
22
RUN apk update
33
RUN apk add --no-cache git
44

build/Dockerfile-bin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${BUILDPLATFORM} golang:1.16.0-alpine AS build
1+
FROM --platform=${BUILDPLATFORM} golang:1.17.0-alpine AS build
22
RUN apk update
33
RUN apk add --no-cache git
44

go.mod

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/transifex/cli
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/blang/semver v3.5.1+incompatible
@@ -11,10 +11,43 @@ require (
1111
github.com/manifoldco/promptui v0.8.0
1212
github.com/mattn/go-isatty v0.0.14
1313
github.com/rhysd/go-github-selfupdate v1.2.3
14+
github.com/urfave/cli/v2 v2.3.0
15+
gopkg.in/ini.v1 v1.62.0
16+
)
17+
18+
require (
19+
github.com/Microsoft/go-winio v0.4.16 // indirect
20+
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
21+
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
22+
github.com/emirpasic/gods v1.12.0 // indirect
23+
github.com/go-git/gcfg v1.5.0 // indirect
24+
github.com/go-git/go-billy/v5 v5.1.0 // indirect
25+
github.com/golang/protobuf v1.3.2 // indirect
26+
github.com/google/go-github/v30 v30.1.0 // indirect
27+
github.com/google/go-querystring v1.0.0 // indirect
28+
github.com/gosimple/unidecode v1.0.1 // indirect
29+
github.com/imdario/mergo v0.3.12 // indirect
30+
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf // indirect
31+
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
32+
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect
33+
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
34+
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect
35+
github.com/mattn/go-colorable v0.1.9 // indirect
36+
github.com/mitchellh/go-homedir v1.1.0 // indirect
37+
github.com/russross/blackfriday/v2 v2.0.1 // indirect
38+
github.com/sergi/go-diff v1.1.0 // indirect
39+
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
1440
github.com/smartystreets/goconvey v1.6.4 // indirect
1541
github.com/stretchr/testify v1.7.0 // indirect
16-
github.com/urfave/cli/v2 v2.3.0
42+
github.com/tcnksm/go-gitconfig v0.1.2 // indirect
43+
github.com/ulikunitz/xz v0.5.9 // indirect
44+
github.com/xanzy/ssh-agent v0.3.0 // indirect
45+
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 // indirect
46+
golang.org/x/net v0.0.0-20210326060303-6b1517762897 // indirect
47+
golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288 // indirect
48+
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
1749
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
18-
gopkg.in/ini.v1 v1.62.0
50+
google.golang.org/appengine v1.3.0 // indirect
51+
gopkg.in/warnings.v0 v0.1.2 // indirect
1952
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
2053
)

0 commit comments

Comments
 (0)