mirror of https://github.com/kedacore/keda.git
Bump Golang to 1.15.6 (#1505)
Signed-off-by: Zbynek Roubalik <zroubali@redhat.com>
This commit is contained in:
parent
c09a1e3273
commit
c2f46c67eb
|
@ -14,7 +14,7 @@ jobs:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: "^1.15.5"
|
go-version: "^1.15.6"
|
||||||
- run: go version
|
- run: go version
|
||||||
# Runs a set of commands to initialize and analyze with FOSSA
|
# Runs a set of commands to initialize and analyze with FOSSA
|
||||||
- name: run FOSSA analysis
|
- name: run FOSSA analysis
|
||||||
|
|
|
@ -40,7 +40,7 @@ jobs:
|
||||||
- uses: actions/setup-python@v2.2.1
|
- uses: actions/setup-python@v2.2.1
|
||||||
- uses: actions/setup-go@v2
|
- uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.15.5
|
go-version: 1.15.6
|
||||||
- name: Get golangci
|
- name: Get golangci
|
||||||
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.31.0
|
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.31.0
|
||||||
- uses: pre-commit/action@v2.0.0
|
- uses: pre-commit/action@v2.0.0
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Build the manager binary
|
# Build the manager binary
|
||||||
FROM golang:1.15.5 as builder
|
FROM golang:1.15.6 as builder
|
||||||
|
|
||||||
ARG BUILD_VERSION
|
ARG BUILD_VERSION
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Build the manager binary
|
# Build the manager binary
|
||||||
FROM golang:1.15.5 as builder
|
FROM golang:1.15.6 as builder
|
||||||
|
|
||||||
ARG BUILD_VERSION
|
ARG BUILD_VERSION
|
||||||
|
|
||||||
|
|
|
@ -26,9 +26,9 @@ RUN curl -LO https://download.docker.com/linux/static/stable/x86_64/docker-19.03
|
||||||
rm -rf docker docker-19.03.2.tgz
|
rm -rf docker docker-19.03.2.tgz
|
||||||
|
|
||||||
# Install golang
|
# Install golang
|
||||||
RUN GO_VERSION=1.15.5 && \
|
RUN GO_VERSION=1.15.6 && \
|
||||||
curl -LO https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz && \
|
curl -LO https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz && \
|
||||||
go_sha256=9a58494e8da722c3aef248c9227b0e9c528c7318309827780f16220998180a0d && \
|
go_sha256=3918e6cc85e7eaaa6f859f1bdbaac772e7a825b0eb423c63d3ae68b21f84b844 && \
|
||||||
echo "$go_sha256 go${GO_VERSION}.linux-amd64.tar.gz" | sha256sum -c - && \
|
echo "$go_sha256 go${GO_VERSION}.linux-amd64.tar.gz" | sha256sum -c - && \
|
||||||
tar -C /usr/local -xvzf go${GO_VERSION}.linux-amd64.tar.gz && \
|
tar -C /usr/local -xvzf go${GO_VERSION}.linux-amd64.tar.gz && \
|
||||||
rm -rf go${GO_VERSION}.linux-amd64.tar.gz
|
rm -rf go${GO_VERSION}.linux-amd64.tar.gz
|
||||||
|
|
Loading…
Reference in New Issue