diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index eefca4810b..0192f6c2f6 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -43,7 +43,7 @@ jobs: # For PRs: Build image but do not push and run smoke tests - name: Build Docker Image (No Push) if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref != 'refs/heads/main') - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile @@ -65,7 +65,7 @@ jobs: # For pushes to main: Build, run smoke tests, and push to Docker Hub - name: Build test stage (main) if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile @@ -82,14 +82,14 @@ jobs: - name: Login to Docker Hub if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build final and push (main) if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . file: ./Dockerfile