diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a54229c..6f956285 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -121,20 +121,20 @@ jobs: path: dist/ - name: Set up QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub if: steps.version.outputs.push == 'true' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build & Push - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v4 with: context: . push: ${{ steps.version.outputs.push }}