From e46360b26c15c359528e6567a5d1853a9ba210a6 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Mon, 16 Sep 2024 21:06:17 -0500 Subject: [PATCH] Attempt bumping to latest builders --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e28338..7adb8b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,15 +17,15 @@ jobs: # to build. steps: - name: Docker Setup Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Docker Login - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Build and push to Docker Hub id: hub_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: push: ${{ github.ref == 'refs/heads/main' && 'true' || 'false' }} tags: compilerexplorer/clang${{ matrix.suffix }}-builder:latest