From 71ac233b89787eade8831e670f6555e286c7c024 Mon Sep 17 00:00:00 2001 From: emmdim Date: Tue, 27 Feb 2024 16:52:43 +0100 Subject: [PATCH] Updates password for Login to GitHub Container Registry --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b4a536..ecc6f90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,15 +48,15 @@ jobs: - name: Check out the repo uses: actions/checkout@v4 - - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Setup Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Get branch name, git commit hash and current time in secs id: vars