1
0
mirror of https://github.com/ko-build/ko.git synced 2025-02-07 19:30:23 +02:00

Bump to Go 1.16.x (#435)

This commit is contained in:
Matt Moore 2021-09-13 10:40:29 -07:00 committed by GitHub
parent 35a4d2c28e
commit 501111b063
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ jobs:
name: Module Tests
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
go-version: [1.16.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/google/ko
go 1.15
go 1.16
require (
github.com/containerd/stargz-snapshotter/estargz v0.8.0

View File

@ -20,7 +20,7 @@ mkdir -p "$GOPATH/src/github.com/google/ko"
cp -r "$ROOT_DIR/"* "$GOPATH/src/github.com/google/ko/"
echo "Downloading github.com/go-training/helloworld"
go get -d github.com/go-training/helloworld
GO111MODULE=off go get -d github.com/go-training/helloworld
pushd "$GOPATH/src/github.com/google/ko" || exit 1