Update Docker

This commit is contained in:
Brett Logan 2022-02-21 10:43:34 -05:00
parent e0b4385cd4
commit 366889a844
3 changed files with 8 additions and 8 deletions

View file

@ -210,7 +210,7 @@ jobs:
###################### ######################
- name: Login to DockerHub - name: Login to DockerHub
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} 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: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
@ -220,7 +220,7 @@ jobs:
#################### ####################
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} 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: with:
registry: ghcr.io registry: ghcr.io
username: ${{ secrets.GCR_USERNAME }} username: ${{ secrets.GCR_USERNAME }}

View file

@ -73,7 +73,7 @@ jobs:
# Login to DockerHub # # Login to DockerHub #
###################### ######################
- name: Login to DockerHub - name: Login to DockerHub
uses: docker/login-action@v1.12.0 uses: docker/login-action@v1.13.0
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
@ -82,7 +82,7 @@ jobs:
# Login to GHCR.io # # Login to GHCR.io #
#################### ####################
- name: Login to GitHub Container Registry - name: Login to GitHub Container Registry
uses: docker/login-action@v1.12.0 uses: docker/login-action@v1.13.0
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ secrets.GCR_USERNAME }} username: ${{ secrets.GCR_USERNAME }}

View file

@ -8,19 +8,19 @@
# Get dependency images as build stages # # Get dependency images as build stages #
######################################### #########################################
FROM accurics/terrascan:1.13.1 as terrascan 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 assignuser/chktex-alpine:v0.1.1 as chktex
FROM cljkondo/clj-kondo:2022.02.09-alpine as clj-kondo FROM cljkondo/clj-kondo:2022.02.09-alpine as clj-kondo
FROM dotenvlinter/dotenv-linter:3.2.0 as dotenv-linter FROM dotenvlinter/dotenv-linter:3.2.0 as dotenv-linter
FROM garethr/kubeval:0.15.0 as kubeval FROM garethr/kubeval:0.15.0 as kubeval
FROM ghcr.io/awkbar-devops/clang-format:v1.0.2 as clang-format 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 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 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 koalaman/shellcheck:v0.8.0 as shellcheck
FROM mstruebing/editorconfig-checker:2.4.0 as editorconfig-checker 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 rhysd/actionlint:1.6.8 as actionlint
FROM scalameta/scalafmt:v3.4.3 as scalafmt FROM scalameta/scalafmt:v3.4.3 as scalafmt
FROM yoheimuta/protolint:v0.37.0 as protolint FROM yoheimuta/protolint:v0.37.0 as protolint