Skip to content

Commit

Permalink
chore(deps): update docker/build-push-action action to v6 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
clb-robot authored Jan 16, 2025
1 parent 28995e7 commit b6dd886
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and push - testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ !steps.get-version.outputs.is-semver }}
with:
Expand All @@ -81,7 +81,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ github.ref_name }}
- name: Build and push - pre-release
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }}
with:
Expand All @@ -100,7 +100,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}
- name: Build and push - stable
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }}
with:
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.major }}
- name: Build and push - testing - Datadog
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ !steps.get-version.outputs.is-semver }}
with:
Expand All @@ -148,7 +148,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ github.ref_name }}-datadog
- name: Build and push - pre-release - Datadog
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease != '' }}
with:
Expand All @@ -168,7 +168,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ steps.get-version.outputs.version-without-v }}-datadog
- name: Build and push - stable - Datadog
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
timeout-minutes: 180
if: ${{ steps.get-version.outputs.is-semver && steps.get-version.outputs.prerelease == '' }}
with:
Expand Down

0 comments on commit b6dd886

Please sign in to comment.