Skip to content
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

build: Upgrade Golang to v1.15 #5009

Merged
merged 5 commits into from
Feb 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yaml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v1
with:
go-version: "1.13.12"
go-version: "1.15.7"
- name: Add bins to PATH
run: |
echo /home/runner/go/bin >> $GITHUB_PATH
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v1
with:
go-version: "1.13.12"
go-version: "1.15.7"
- name: Add bins to PATH
run: |
echo /home/runner/go/bin >> $GITHUB_PATH
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v1
with:
go-version: "1.13.12"
go-version: "1.15.7"
- name: Add bins to PATH
run: |
echo /home/runner/go/bin >> $GITHUB_PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v1
with:
go-version: '1.13.12'
go-version: '1.15.7'
- name: build
run: |
pip install mkdocs==1.0.4 mkdocs_material==4.1.1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -3,7 +3,7 @@
# Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image
# Also used as the image in CI jobs so needs all dependencies
####################################################################################################
FROM golang:1.13.4 as builder
FROM golang:1.15.7 as builder

ARG IMAGE_OS=linux

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Expand Up @@ -3,7 +3,7 @@
# Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image
# Also used as the image in CI jobs so needs all dependencies
####################################################################################################
FROM golang:1.13.4 as builder
FROM golang:1.15.7 as builder

ARG IMAGE_OS=linux
ARG IMAGE_ARCH=amd64
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.windows
Expand Up @@ -5,7 +5,7 @@
####################################################################################################
# had issues with official golange image for windows so I'm using plain servercore
FROM mcr.microsoft.com/windows/servercore:ltsc2019 as builder
ENV GOLANG_VERSION=1.13.4
ENV GOLANG_VERSION=1.15.7
SHELL ["powershell", "-Command"]

ARG IMAGE_OS=windows
Expand Down