This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch issue/fix-gh-action in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-committer-cli.git
commit 51695b9cda2b3aad95bbd03d73e7745941f6d801 Author: Robert Munteanu <[email protected]> AuthorDate: Wed Aug 19 18:04:10 2026 +0200 Fix unapproved docker/setup-buildx-action SHA in GH workflows - #665 The pinned SHA for docker/setup-buildx-action was dropped from the ASF INFRA GitHub Actions allowlist, causing docker-push.yml to fail with startup_failure. Repin to the currently approved v4.2.0 SHA. --- .github/workflows/docker-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-push.yml b/.github/workflows/docker-push.yml index 7dd6c40..f4724d8 100644 --- a/.github/workflows/docker-push.yml +++ b/.github/workflows/docker-push.yml @@ -51,6 +51,6 @@ jobs: - name: Set up QEMU # https://github.com/docker/buildx/issues/499 uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a - name: Set up Docker Buildx - uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd + uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - name: Push Docker image run: mvn --batch-mode install docker:push -Ddocker.platforms=linux/amd64,linux/arm64
