From 854cbfbfd8a643f12f4d622719e026e7a3bbbad9 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 13 May 2025 13:44:12 +0200 Subject: [PATCH] fix(ci): use latest version for docker buildx setup Fixes a regression introduced in 3e540cff5f943ecd6c284af2ed11e4e8d75b7d69 It's not entirely clear where this is coming from, probably a combination of blacksmith and not using the latest version --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c4cfa9c1..9350ab043 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,10 +10,6 @@ jobs: - name: Git describe id: ghd uses: proudust/gh-describe@v2 - - name: setup blacksmith docker action - uses: useblacksmith/build-push-action@5646913081e85d88fd2b81c50c30fcd1d5b11ac8 # v1 - with: - setup-only: true - name: Login to GHCR uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3 with: @@ -23,6 +19,8 @@ jobs: uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3 + with: + version: latest - name: Docker meta version if: ${{ github.ref_type == 'tag' }} id: meta