From 8ecee6edaf2b834c34e77f71da9e7bdc28ea6136 Mon Sep 17 00:00:00 2001 From: Chris Crone Date: Thu, 18 Feb 2021 13:53:00 +0100 Subject: [PATCH] deps: Bump Docker, Golang, linter * Docker 20.10.3 * Golang 1.16 * golangci-lint 1.37.0 Signed-off-by: Chris Crone --- .github/workflows/aci-tests.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/ecs-tests.yml | 2 +- .github/workflows/kube-tests.yml | 2 +- .github/workflows/release.yaml | 4 ++-- Dockerfile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/aci-tests.yml b/.github/workflows/aci-tests.yml index 0f9a43cf3..2854f62b1 100644 --- a/.github/workflows/aci-tests.yml +++ b/.github/workflows/aci-tests.yml @@ -36,7 +36,7 @@ jobs: - name: Setup docker CLI run: | - curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz + curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version - name: Checkout code into the Go module directory diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 202265555..fe1a56a3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: env: BUILD_TAGS: kube,e2e run: | - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/bin/ v1.33.0 + curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/bin/ v1.37.0 make -f builder.Makefile lint build: @@ -51,7 +51,7 @@ jobs: - name: Setup docker CLI run: | - curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz + curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version - name: Checkout code into the Go module directory diff --git a/.github/workflows/ecs-tests.yml b/.github/workflows/ecs-tests.yml index 45d655d81..c19f67cd2 100644 --- a/.github/workflows/ecs-tests.yml +++ b/.github/workflows/ecs-tests.yml @@ -37,7 +37,7 @@ jobs: - name: Setup docker CLI run: | - curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz + curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version - name: Checkout code into the Go module directory diff --git a/.github/workflows/kube-tests.yml b/.github/workflows/kube-tests.yml index fc113e563..932ea6abf 100644 --- a/.github/workflows/kube-tests.yml +++ b/.github/workflows/kube-tests.yml @@ -37,7 +37,7 @@ jobs: - name: Setup docker CLI run: | - curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz + curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version - name: Setup Kube tools diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 63b6e0e01..819d1dd85 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,13 +16,13 @@ jobs: - name: Setup docker CLI run: | - curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.2.tgz | tar xz + curl https://download.docker.com/linux/static/stable/x86_64/docker-20.10.3.tgz | tar xz sudo cp ./docker/docker /usr/bin/ && rm -rf docker && docker version - name: Checkout code into the Go module directory uses: actions/checkout@v2 - - uses: actions/cache@v1 + - uses: actions/cache@v2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/Dockerfile b/Dockerfile index 00f36c83f..1d9584576 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ # limitations under the License. ARG GO_VERSION=1.16-alpine -ARG GOLANGCI_LINT_VERSION=v1.33.0-alpine +ARG GOLANGCI_LINT_VERSION=v1.37.0-alpine ARG PROTOC_GEN_GO_VERSION=v1.4.3 FROM --platform=${BUILDPLATFORM} golang:${GO_VERSION} AS base