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