Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -379,7 +379,7 @@
uses: actions/checkout@v4
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: /tmp/digests
pattern: docker-digests-*
Expand All @@ -397,7 +397,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 warning on line 400 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: w:.github/workflows/docker.yml:400: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 @@ -442,7 +442,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -529,7 +529,7 @@
uses: actions/checkout@v4
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: /tmp/digests
pattern: quay-digests-*
Expand All @@ -548,7 +548,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 warning on line 551 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: w:.github/workflows/docker.yml:551: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 @@ -593,7 +593,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -680,7 +680,7 @@
uses: actions/checkout@v4
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
path: /tmp/digests
pattern: ghcr-digests-*
Expand All @@ -699,7 +699,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 warning on line 702 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: w:.github/workflows/docker.yml:702: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