From 7b5b286700f8f7e5419ae3b1b43f996da83ad6c0 Mon Sep 17 00:00:00 2001 From: Adrian Hannah Date: Wed, 2 Sep 2026 11:06:51 -0400 Subject: [PATCH] fix: fix ghcr creds The package was using a custom user and token (set in repo secrets) to push to ghcr. now that we're pushing this image to the same org (and not the old org) we can use the default wokflow token. ref: BED-9542 --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 75d960a..a93c881 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,8 +40,8 @@ jobs: if: ${{ ! startsWith(github.event_name, 'pull_request') }} with: registry: ghcr.io - username: ${{ secrets.GHCR_USER }} - password: ${{ secrets.PACKAGE_SCOPE }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@ec61189d14ec14c8efccab744f656cffd0e33f37 # ratchet:aws-actions/configure-aws-credentials@v6 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d3c1cd0..571eb3d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -153,8 +153,8 @@ jobs: uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # ratchet:docker/login-action@v4 with: registry: ghcr.io - username: ${{ secrets.GHCR_USER }} - password: ${{ secrets.PACKAGE_SCOPE }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Log in to ACR uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # ratchet:docker/login-action@v4