-
-
Notifications
You must be signed in to change notification settings - Fork 583
chore(deps): Update docker/build-push-action action to v6.18.0 #899
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -62,7 +62,7 @@ jobs: | |
|
|
||
| - name: Build if Dockerfile changed | ||
| if: steps.changed-files-specific.outputs.any_changed == 'true' | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | ||
|
||
| with: | ||
| context: . | ||
| build-args: | | ||
|
|
@@ -113,7 +113,7 @@ jobs: | |
| if: >- | ||
| steps.changed-files-specific.outputs.any_changed == 'true' | ||
| && matrix.os == 'ubuntu-latest' | ||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | ||
| with: | ||
| context: . | ||
| build-args: | | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -47,7 +47,7 @@ jobs: | |||||||||
|
|
||||||||||
| - name: Build and Push release | ||||||||||
| if: github.event_name != 'schedule' | ||||||||||
| uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0 | ||||||||||
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | ||||||||||
|
||||||||||
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | |
| uses: docker/build-push-action@v6.18.0 |
Copilot
AI
May 30, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] You could extract the action version into a workflow-level environment variable or use a reusable workflow to avoid repeating the same version in multiple jobs.
| uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | |
| uses: docker/build-push-action@${{ env.BUILD_PUSH_ACTION_VERSION }} # v6.18.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] Consider using the
v6.18.0tag instead of a raw commit SHA for clarity and easier future updates.