-
Notifications
You must be signed in to change notification settings - Fork 504
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
all: Bump Golang minor versions in accordance with latest release. #3693
Changes from 2 commits
bf3c5e9
bf52ab2
1989a62
646b7a7
fe0703b
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.16.3 as build | ||
FROM golang:1.16.5 as build | ||
|
||
ADD . /src/recoverysigner | ||
WORKDIR /src/recoverysigner | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16.3 as build | ||
FROM golang:1.16.5 as build | ||
|
||
ADD . /src/webauth | ||
WORKDIR /src/webauth | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16.3 as build | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did we remove the patch version from some locations like this one, but we kept the patch versions in other services? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. are you talking about these? #3693 (comment) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That link doesn't seem to go anywhere for me. In the CI files patch versions are used, and in the Ticker, Keystore, and other docker files a patch version is used. It'd be helpful if we are consistent. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got it. What's the motivation for only making that change for Friendbot and Horizon, and not the other services? |
||
FROM golang:1.16.5 as build | ||
|
||
ADD . /src/friendbot | ||
WORKDIR /src/friendbot | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16.3 as build | ||
FROM golang:1.16.5 as build | ||
|
||
ADD . /src/keystore | ||
WORKDIR /src/keystore | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16.3 as build | ||
FROM golang:1.16.5 as build | ||
|
||
ADD . /src/ticker | ||
WORKDIR /src/ticker | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.16.3-stretch as build | ||
FROM golang:1.16.5-stretch as build | ||
|
||
LABEL maintainer="Alex Cordeiro <[email protected]>" | ||
|
||
|
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.
Maybe we should replace it with:
so that it will always pull latest Golang 1.16.x. This was recommended by @jacekn and @satyamz in the issue about bumping Golang versions in SDF. Same thing for 1.15.x.
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.
I like this idea. We basically always want to be on latest patch release. Let's do it.
For minor versions let's stick to manual update for now.
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.
Cool, I didn't realize 1.16 would always be the latest
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.
Done!