From 2b6c84a4bb5305badda50380bf20e4f332e32dd8 Mon Sep 17 00:00:00 2001 From: thedancingdeveloper <306930456+thedancingdeveloper@users.noreply.github.com> Date: Mon, 31 Aug 2026 01:38:12 +0000 Subject: [PATCH] ci: refresh dead skopeo image pin in release mirrors The pinned quay.io/skopeo/stable@sha256:c7d3c51... digest is 404 on quay.io (garbage-collected), so both release-image mirror steps (Forgejo rollback registry and old GHCR namespace) failed with exit 125 on v1.4.6 and would break every future release. Repin to skopeo/stable:v1.19 (sha256:77e6c890...), verified pullable by digest. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01NcRDAbyqhY88qnQBaMtue8 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff79003..fcb8a9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -93,7 +93,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GHCR_TOKEN }} FORGEJO_TOKEN: ${{ secrets.FORGEJO_CARGO_TOKEN }} - SKOPEO_IMAGE: quay.io/skopeo/stable@sha256:c7d3c512612f52805023cd38351081dad7e2729fc13d14b701e47c7c8bdd6615 + SKOPEO_IMAGE: quay.io/skopeo/stable:v1.19@sha256:77e6c8901f6976bdfa87b8b14c40b96de754794c492d8ed295f77fba1454a4ab run: | docker run --rm --entrypoint sh \ -e GH_TOKEN -e FORGEJO_TOKEN -e GITHUB_ACTOR -e GITHUB_REF_NAME \ @@ -116,7 +116,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GHCR_TOKEN }} OLD_GHCR_TOKEN: ${{ secrets.OLD_GHCR_TOKEN }} - SKOPEO_IMAGE: quay.io/skopeo/stable@sha256:c7d3c512612f52805023cd38351081dad7e2729fc13d14b701e47c7c8bdd6615 + SKOPEO_IMAGE: quay.io/skopeo/stable:v1.19@sha256:77e6c8901f6976bdfa87b8b14c40b96de754794c492d8ed295f77fba1454a4ab run: | docker run --rm --entrypoint sh \ -e GH_TOKEN -e OLD_GHCR_TOKEN -e GITHUB_ACTOR -e GITHUB_REF_NAME \