Skip to content

Commit 26dd3bc

Browse files
author
bugficks
committed
go 1.16
1 parent c8156f4 commit 26dd3bc

File tree

4 files changed

+109
-69
lines changed

4 files changed

+109
-69
lines changed

.circleci/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
docker:
88
# specify the version
9-
- image: circleci/golang:1.14
9+
- image: circleci/golang:1.16
1010

1111
# Specify service dependencies here if necessary
1212
# CircleCI maintains a library of pre-built images
@@ -41,6 +41,7 @@ jobs:
4141
source VERSION
4242
ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -delete ${VERSION} ./release/
4343
44+
# https://circleci.com/docs/2.0/workflows/#executing-workflows-for-a-git-tag
4445
workflows:
4546
version: 2
4647
untagged-build:

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ language: go
22
go:
33
- "1.13"
44
- "1.14"
5+
- "1.15"
6+
- "1.16"
57
install:
68
- make get-deps
79
script:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module docker-gen
22

3-
go 1.14
3+
go 1.16
44

55
require (
66
github.com/BurntSushi/toml v0.3.1
77
github.com/foomo/htpasswd v0.0.0-20200116085101-e3a90e78da9c
8-
github.com/fsouza/go-dockerclient v1.6.5
8+
github.com/fsouza/go-dockerclient v1.7.1
99
)

0 commit comments

Comments
 (0)