From d2bce34f8d4b252bf3c6ef68bba07b3523698de8 Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Wed, 28 Jan 2026 16:40:57 -0500 Subject: [PATCH 1/5] Remove DockerHub push --- .github/workflows/ci.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f07f149..bb81e4a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,12 +20,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Log in to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Log in to GHCR uses: docker/login-action@v3 with: @@ -38,14 +32,12 @@ jobs: uses: docker/metadata-action@v5 with: images: | - ${{ vars.DOCKER_ORG }}/ecs-deploy # the name needs to be static "ecs-deploy" ghcr.io/${{ github.repository_owner }}/ecs-deploy tags: | type=ref,event=branch type=semver,pattern={{version}} type=semver,pattern={{major.minor}} - - name: Build and push Docker image uses: docker/build-push-action@v5 with: From 4f708ce37398e9cf6d7a8659ea3517d0bb61184d Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Fri, 30 Jan 2026 12:52:31 -0500 Subject: [PATCH 2/5] Update run-tests.sh install of bats Appears to not need the additional parameters. --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index e50e15c..3afbf2c 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -apk add bats --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community/ --allow-untrusted +apk add bats bats test.bats From a86c3bd047d40285dcc0a26d7ce845573a199095 Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:40:34 -0500 Subject: [PATCH 3/5] Add back update-cache when installing bats --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 3afbf2c..7ba49c4 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -apk add bats +apk add bats --update-cache bats test.bats From 6224139a50ebc4bc0991a70dc99c9ed15e6fb775 Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:47:01 -0500 Subject: [PATCH 4/5] Add note about only pushing to GHCR --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1bbd7ba..0dce894 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ This script uses the Task Definition and Service entities in Amazon's ECS to ins "feature complete" and will generally only consider PRs if they are bugfixes or are to add support for new AWS CLI features. +__We are now only pushing the container to GHCR.__ + ## Usage One of the following is required: From ef3829284cd1896180d789115380081f3cb58a5e Mon Sep 17 00:00:00 2001 From: Devon <122382412+devon-sil@users.noreply.github.com> Date: Thu, 12 Feb 2026 09:47:50 -0500 Subject: [PATCH 5/5] Update note to say we migrated to GHCR --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dce894..911a655 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This script uses the Task Definition and Service entities in Amazon's ECS to ins "feature complete" and will generally only consider PRs if they are bugfixes or are to add support for new AWS CLI features. -__We are now only pushing the container to GHCR.__ +__We have migrated the container image to GHCR.__ ## Usage