-
Notifications
You must be signed in to change notification settings - Fork 512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Go to 1.14.1 #1543
Update Go to 1.14.1 #1543
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.12.15 | ||
FROM golang:1.14.1 | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
curl \ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
go_version=1.12.15 | ||
go_version=1.14.1 | ||
|
||
docker run --rm --env GO111MODULE=on -w /notary --volume ${PWD}:/notary \ | ||
golang:${go_version}-alpine \ | ||
sh -c "apk update && apk add bash git && buildscripts/validate-vendor.sh" | ||
sh -c "apk update && apk add bash git && buildscripts/validate-vendor.sh" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.12.15-alpine | ||
FROM golang:1.14.1-alpine | ||
|
||
RUN apk add --update git gcc libc-dev | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.12.15-alpine | ||
FROM golang:1.14.1-alpine | ||
|
||
RUN apk add --update git gcc libc-dev | ||
|
||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wondering why success in the past?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah these were weird it looks like the error message printing changed in Go 1.14, I mean checking exact error messages is always risky.