From 366889a844d840ae54c47713e650ce5715eb7a7f Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Mon, 21 Feb 2022 10:43:34 -0500 Subject: [PATCH] Update Docker --- .github/workflows/deploy-production.yml | 4 ++-- .github/workflows/deploy-release.yml | 4 ++-- Dockerfile | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index ea69b4f9..c23cc487 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -210,7 +210,7 @@ jobs: ###################### - name: Login to DockerHub if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -220,7 +220,7 @@ jobs: #################### - name: Login to GitHub Container Registry if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: registry: ghcr.io username: ${{ secrets.GCR_USERNAME }} diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 0824fc4a..5188d8f1 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -73,7 +73,7 @@ jobs: # Login to DockerHub # ###################### - name: Login to DockerHub - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -82,7 +82,7 @@ jobs: # Login to GHCR.io # #################### - name: Login to GitHub Container Registry - uses: docker/login-action@v1.12.0 + uses: docker/login-action@v1.13.0 with: registry: ghcr.io username: ${{ secrets.GCR_USERNAME }} diff --git a/Dockerfile b/Dockerfile index e98447b2..610aca9b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,19 +8,19 @@ # Get dependency images as build stages # ######################################### FROM accurics/terrascan:1.13.1 as terrascan -FROM alpine/terragrunt:1.1.5 as terragrunt +FROM alpine/terragrunt:1.1.6 as terragrunt FROM assignuser/chktex-alpine:v0.1.1 as chktex FROM cljkondo/clj-kondo:2022.02.09-alpine as clj-kondo FROM dotenvlinter/dotenv-linter:3.2.0 as dotenv-linter FROM garethr/kubeval:0.15.0 as kubeval FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format FROM ghcr.io/terraform-linters/tflint-bundle:v0.34.1.2 as tflint -FROM golangci/golangci-lint:v1.44.0 as golangci-lint +FROM golangci/golangci-lint:v1.44.2 as golangci-lint FROM hadolint/hadolint:latest-alpine as dockerfile-lint -FROM hashicorp/terraform:1.1.5 as terraform +FROM hashicorp/terraform:1.1.6 as terraform FROM koalaman/shellcheck:v0.8.0 as shellcheck FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker -FROM mvdan/shfmt:v3.4.2 as shfmt +FROM mvdan/shfmt:v3.4.3 as shfmt FROM rhysd/actionlint:1.6.8 as actionlint FROM scalameta/scalafmt:v3.4.3 as scalafmt FROM yoheimuta/protolint:v0.37.0 as protolint