From 49c627f7a96a6f6ac8520270283da85af3264d8d Mon Sep 17 00:00:00 2001 From: Oliver Pajonk Date: Thu, 10 Jul 2025 08:48:03 +0200 Subject: [PATCH] fix: update GitHub Container Registry token reference in CI workflows --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a7ec364..4635850 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -28,7 +28,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.GHCR_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Check, Build, Test, Publish uses: devcontainers/ci@v0.3 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c401b83..a8d8761 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: with: registry: ghcr.io username: ${{ github.actor }} - password: ${{ secrets.GHCR_TOKEN }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Check, Build, Test, Publish uses: devcontainers/ci@v0.3