From 31efa2eb68bd634ee181b3b09aba99e35fe2305a Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 18 Jun 2020 13:53:45 -0500 Subject: [PATCH 1/5] Changing from Admiralawkbar to github --- .github/workflows/deploy-DEV.yml | 6 +++--- .github/workflows/deploy-PROD.yml | 2 +- .github/workflows/stack-linter.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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..cac0000a 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: github/super-linter env: VALIDATE_ALL_CODEBASE: false From d5d29c2ac9dfa33a720397f66d44918c72decc7e Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 18 Jun 2020 14:02:54 -0500 Subject: [PATCH 2/5] more updates --- .automation/upload-docker.sh | 1 + 1 file changed, 1 insertion(+) 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. # From 3764738cee4f6a16e53e064f5a541ae6ad65e39a Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 18 Jun 2020 14:06:05 -0500 Subject: [PATCH 3/5] fixed version --- .github/workflows/stack-linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index cac0000a..dea3d9a3 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: github/super-linter + uses: github/super-linter@v2.0.0 env: VALIDATE_ALL_CODEBASE: false From eb9f7498f852c6659e78fd92f8e2d14f8a62efc6 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 18 Jun 2020 14:09:33 -0500 Subject: [PATCH 4/5] using the built container and not the repo --- .github/workflows/stack-linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stack-linter.yml b/.github/workflows/stack-linter.yml index dea3d9a3..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: github/super-linter@v2.0.0 + uses: docker://github/super-linter:latest env: VALIDATE_ALL_CODEBASE: false From b9055439d3f148d68d714eae8996445336c11246 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Thu, 18 Jun 2020 14:42:33 -0500 Subject: [PATCH 5/5] more language --- .automation/cleanup-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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