Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v6.18.0
uses: docker/build-push-action@v7.0.0
with:
context: .
file: ./Dockerfile
Expand All @@ -63,7 +63,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@v6.18.0
uses: docker/build-push-action@v7.0.0
with:
context: .
file: ./Dockerfile
Expand All @@ -87,7 +87,7 @@ jobs:

- name: Build final and push (main)
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v7.0.0
with:
context: .
file: ./Dockerfile
Expand Down
Loading