Skip to content

Commit 6627597

Browse files
authored
Merge pull request #226 from thaJeztah/bump_go_1.18.5
update to go 1.18.5
2 parents ab7fd12 + fd01974 commit 6627597

File tree

8 files changed

+8
-29
lines changed

8 files changed

+8
-29
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22

3-
ARG GO_VERSION=1.16.7
3+
ARG GO_VERSION=1.18.5
44
ARG XX_VERSION=1.1.2
55
ARG OSXCROSS_VERSION=11.3-r7-alpine
66

credentials/credentials.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ func Erase(helper Helper, reader io.Reader) error {
169169
return helper.Delete(serverURL)
170170
}
171171

172-
//List returns all the serverURLs of keys in
173-
//the OS store as a list of strings
172+
// List returns all the serverURLs of keys in
173+
// the OS store as a list of strings
174174
func List(helper Helper, writer io.Writer) error {
175175
accts, err := helper.List()
176176
if err != nil {
@@ -179,7 +179,7 @@ func List(helper Helper, writer io.Writer) error {
179179
return json.NewEncoder(writer).Encode(accts)
180180
}
181181

182-
//PrintVersion outputs the current version.
182+
// PrintVersion outputs the current version.
183183
func PrintVersion(writer io.Writer) error {
184184
fmt.Fprintln(writer, Version)
185185
return nil

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variable "GO_VERSION" {
2-
default = "1.16.7"
2+
default = "1.18.5"
33
}
44

55
# Defines the output folder

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/docker-credential-helpers
22

3-
go 1.13
3+
go 1.18
44

55
require (
66
github.com/danieljoos/wincred v1.1.2

go.sum

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5Cc
1010
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
1111
golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c h1:Lyn7+CqXIiC+LOR9aHD6jDK+hPcmAuCfuXztd1v4w1Q=
1212
golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
13-
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1413
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1514
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
1615
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

vendor/github.com/danieljoos/wincred/go.mod

Lines changed: 0 additions & 8 deletions
This file was deleted.

vendor/github.com/danieljoos/wincred/go.sum

Lines changed: 0 additions & 14 deletions
This file was deleted.

vendor/modules.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# github.com/danieljoos/wincred v1.1.2
2+
## explicit; go 1.13
23
github.com/danieljoos/wincred
34
# golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c
5+
## explicit; go 1.17
46
golang.org/x/sys/execabs
57
golang.org/x/sys/internal/unsafeheader
68
golang.org/x/sys/windows

0 commit comments

Comments
 (0)