From df902367cae540d8b9a464be9f1846d6924080a9 Mon Sep 17 00:00:00 2001 From: IsaacTrost <77888524+IsaacTrost@users.noreply.github.com> Date: Tue, 10 Oct 2023 21:41:21 -0400 Subject: [PATCH] Update docker-image.yml We need to update the secrets used. That old token seems to have expired, and there is no reason to have that as a secret when actions will handle any github auth for us. --- .github/workflows/docker-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index b6aa6b9..6b8596a 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -19,7 +19,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.CR_PAT }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push image uses: docker/build-push-action@v2