From f965bd7e7c544936a6d5223dd2c5528e6d789c2d Mon Sep 17 00:00:00 2001 From: Brett Logan Date: Tue, 20 Dec 2022 18:14:59 -0500 Subject: [PATCH] Use default GHCR token Signed-off-by: Brett Logan --- .github/workflows/deploy-production.yml | 4 ++-- .github/workflows/deploy-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index ce09c4d2..c7c914ca 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -156,8 +156,8 @@ jobs: uses: docker/login-action@v2.0.0 with: registry: ghcr.io - username: ${{ secrets.GCR_USERNAME }} - password: ${{ secrets.GCR_TOKEN }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Start the deployment for the ${{ matrix.images.deployment-environment-identifier }} environment if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 0def3a82..3676febf 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -44,8 +44,8 @@ jobs: uses: docker/login-action@v2.0.0 with: registry: ghcr.io - username: ${{ secrets.GCR_USERNAME }} - password: ${{ secrets.GCR_TOKEN }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Get current release identifier # shellcheck disable=SC2062