From 0ec94f79d47e20d726afa117d77886bbcba34b32 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Mon, 29 Jun 2026 12:05:31 +0000 Subject: [PATCH] fix(ci): correct corrupted docker/build-push-action SHA MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SHA for docker/build-push-action@v7.2.0 in tag.yaml and cron.yaml was corrupted: 0d7f5c8f should be 0d6e8b85. Correct SHA from git ls-remote refs/tags/v7.2.0: f9f3042f7e2789586610d6e8b85c8f03e5195baf Fixes CI run #2437 job #6165 (reference not found on docker/login-action clone — likely cascade from the corrupted build-push-action SHA). --- .gitea/workflows/cron.yaml | 2 +- .gitea/workflows/tag.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/cron.yaml b/.gitea/workflows/cron.yaml index d8ed9ea..7398d48 100644 --- a/.gitea/workflows/cron.yaml +++ b/.gitea/workflows/cron.yaml @@ -44,7 +44,7 @@ jobs: images: jcabillot/ip tags: | type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }} - - uses: docker/build-push-action@f9f3042f7e2789586610d7f5c8f03e5195baf # v7.2.0 + - uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0 with: context: . push: true diff --git a/.gitea/workflows/tag.yaml b/.gitea/workflows/tag.yaml index 290b7e7..590de4e 100644 --- a/.gitea/workflows/tag.yaml +++ b/.gitea/workflows/tag.yaml @@ -39,7 +39,7 @@ jobs: tags: | type=ref,event=tag type=ref,event=tag,suffix=-latest - - uses: docker/build-push-action@f9f3042f7e2789586610d7f5c8f03e5195baf # v7.2.0 + - uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0 with: context: . push: true