Skip to content

Commit a23448b

Browse files
committed
update to go 1.18
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
1 parent 9da6f52 commit a23448b

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
ARG GO_VERSION="1.16"
17+
ARG GO_VERSION="1.18"
1818
ARG GOLANGCI_LINT_VERSION="v1.37"
1919
ARG ADDLICENSE_VERSION="v1.0.0"
2020

go.mod

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
module github.com/docker/cli-docs-tool
22

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/spf13/cobra v1.2.1
77
github.com/spf13/pflag v1.0.5
88
github.com/stretchr/testify v1.7.0
99
gopkg.in/yaml.v2 v2.4.0
1010
)
11+
12+
require (
13+
github.com/davecgh/go-spew v1.1.1 // indirect
14+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
15+
github.com/pmezard/go-difflib v1.0.0 // indirect
16+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
17+
)

0 commit comments

Comments
 (0)