Skip to content
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

Bump docker/build-push-action from 5 to 6 #74

Closed
Show file tree
Hide file tree
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build test environment
id: build1
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
continue-on-error: true # We retry 3 times at 5 minute intervals if there is a failure here.
with:
push: false
Expand All @@ -357,7 +357,7 @@ jobs:
- name: Build test environment (attempt 2)
if: ${{ steps.build1.outcome == 'failure' }}
id: build2
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
continue-on-error: true # We retry 3 times at 5 minute intervals if there is a failure here.
with:
push: false
Expand All @@ -375,7 +375,7 @@ jobs:
- name: Build test environment (attempt 3)
if: ${{ steps.build1.outcome == 'failure' && steps.build2.outcome == 'failure' }}
id: build3
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
load: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
- name: Build Image
id: build
if: needs.file-check.outputs.run == 'true'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
tags: netdata/netdata:test
Expand Down Expand Up @@ -279,7 +279,7 @@
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build Image
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
cache-from: type=local,src=/tmp/build-cache
Expand Down Expand Up @@ -359,7 +359,7 @@
- name: Create and Push Manifest
id: manifest
if: github.repository == 'netdata/netdata'
run: docker buildx imagetools create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests '' "${{ needs.gen-tags.outputs.tags }}")

Check failure on line 362 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck] Raw Output: .github/workflows/docker.yml:362:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down Expand Up @@ -434,7 +434,7 @@
password: ${{ secrets.NETDATABOT_QUAY_TOKEN }}
- name: Build Image
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
cache-from: type=local,src=/tmp/build-cache
Expand Down Expand Up @@ -515,7 +515,7 @@
- name: Create and Push Manifest
id: manifest
if: github.repository == 'netdata/netdata'
run: docker buildx imagetools create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests 'quay.io' "${{ needs.gen-tags.outputs.tags }}")

Check failure on line 518 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck] Raw Output: .github/workflows/docker.yml:518:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down Expand Up @@ -590,7 +590,7 @@
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build Image
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: ${{ matrix.platform }}
cache-from: type=local,src=/tmp/build-cache
Expand Down Expand Up @@ -671,7 +671,7 @@
- name: Create and Push Manifest
id: manifest
if: github.repository == 'netdata/netdata'
run: docker buildx imagetools create $(.github/scripts/gen-docker-imagetool-args.py /tmp/digests 'ghcr.io' "${{ needs.gen-tags.outputs.tags }}")

Check failure on line 674 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck] Raw Output: .github/workflows/docker.yml:674:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down
Loading