diff --git a/.automation/cleanup-docker.sh b/.automation/cleanup-docker.sh index ab333098..77b86ab3 100755 --- a/.automation/cleanup-docker.sh +++ b/.automation/cleanup-docker.sh @@ -1,7 +1,7 @@ #!/bin/bash ################################################################################ -############# Cleanup Container on DockerHub @admiralawkbar #################### +############# Cleanup Image on DockerHub @admiralawkbar ######################## ################################################################################ # NOTES: This script is used to remove a tagged image on DockerHub diff --git a/.automation/upload-docker.sh b/.automation/upload-docker.sh index 36c8dd02..e6f42be1 100755 --- a/.automation/upload-docker.sh +++ b/.automation/upload-docker.sh @@ -5,6 +5,7 @@ ################################################################################ # NOTES: This script is used to upload a Dockerfile to DockerHub +# under the GitHub organization # Its based on being built from a GitHub Action, but could be easily updated # To be ran in a different medium. # diff --git a/.github/workflows/deploy-DEV.yml b/.github/workflows/deploy-DEV.yml index 35760ab0..4b6975d7 100644 --- a/.github/workflows/deploy-DEV.yml +++ b/.github/workflows/deploy-DEV.yml @@ -48,7 +48,7 @@ jobs: # Set the Env Vars DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - IMAGE_REPO: admiralawkbar/super-linter + IMAGE_REPO: github/super-linter DOCKERFILE_PATH: Dockerfile shell: bash run: .automation/upload-docker.sh @@ -66,5 +66,5 @@ jobs: - name: Run Test Cases shell: bash run: | - docker pull admiralawkbar/super-linter:${BRANCH_NAME} - docker run -e RUN_LOCAL=true -e TEST_CASE_RUN=true -v ${GITHUB_WORKSPACE}:/tmp/lint admiralawkbar/super-linter:${BRANCH_NAME} + docker pull github/super-linter:${BRANCH_NAME} + docker run -e RUN_LOCAL=true -e TEST_CASE_RUN=true -v ${GITHUB_WORKSPACE}:/tmp/lint github/super-linter:${BRANCH_NAME} diff --git a/.github/workflows/deploy-PROD.yml b/.github/workflows/deploy-PROD.yml index ab853943..fd39563b 100644 --- a/.github/workflows/deploy-PROD.yml +++ b/.github/workflows/deploy-PROD.yml @@ -45,7 +45,7 @@ jobs: # Set the Env Vars DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} - IMAGE_REPO: admiralawkbar/super-linter + IMAGE_REPO: github/super-linter IMAGE_VERSION: latest DOCKERFILE_PATH: Dockerfile shell: bash diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index c6d8c58a..5db00510 100644 --- a/.github/workflows/stack-linter.yml +++ b/.github/workflows/stack-linter.yml @@ -41,6 +41,6 @@ jobs: # Run Linter against code base # ################################ - name: Lint Code Base - uses: docker://admiralawkbar/super-linter:latest + uses: docker://github/super-linter:latest env: VALIDATE_ALL_CODEBASE: false