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
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -429,7 +429,7 @@
uses: actions/checkout@v6
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: docker-digests-*
Expand All @@ -447,11 +447,11 @@
- 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 450 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:450:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Rotate Old Image Tags
id: rotate
if: github.repository == 'netdata/netdata' && needs.gen-tags.outputs.nightly == '1'
run: .github/scripts/rotate-docker-tags.sh ${{ needs.gen-tags.outputs.docker_repo }} ${{ needs.gen-tags.outputs.nightly_tag }} ${NIGHTLY_COUNT}

Check warning on line 454 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:123: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:454:9: shellcheck reported issue in this script: SC2086:info:1:123: Double quote to prevent globbing and word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down Expand Up @@ -497,7 +497,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -588,7 +588,7 @@
uses: actions/checkout@v6
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: quay-digests-*
Expand All @@ -607,11 +607,11 @@
- 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 610 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:610:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Rotate Old Image Tags
id: rotate
if: github.repository == 'netdata/netdata' && needs.gen-tags.outputs.nightly == '1'
run: .github/scripts/rotate-docker-tags.sh ${{ needs.gen-tags.outputs.quay_repo }} ${{ needs.gen-tags.outputs.nightly_tag }} ${NIGHTLY_COUNT}

Check warning on line 614 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:121: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:614:9: shellcheck reported issue in this script: SC2086:info:1:121: Double quote to prevent globbing and word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down Expand Up @@ -657,7 +657,7 @@
run: echo "platform=$(echo ${{ matrix.platform }} | tr '/' '-' | cut -f 2- -d '-')" >> "${GITHUB_OUTPUT}"
- name: Download Cache
id: fetch-cache
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache
Expand Down Expand Up @@ -748,7 +748,7 @@
uses: actions/checkout@v6
- name: Download digests
id: fetch-digests
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
path: /tmp/digests
pattern: ghcr-digests-*
Expand All @@ -767,11 +767,11 @@
- 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 770 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:770:9: shellcheck reported issue in this script: SC2046:warning:1:33: Quote this to prevent word splitting [shellcheck]
- name: Rotate Old Image Tags
id: rotate
if: github.repository == 'netdata/netdata' && needs.gen-tags.outputs.nightly == '1'
run: .github/scripts/rotate-docker-tags.sh ${{ needs.gen-tags.outputs.ghcr_repo }} ${{ needs.gen-tags.outputs.nightly_tag }} ${NIGHTLY_COUNT}

Check warning on line 774 in .github/workflows/docker.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:121: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/docker.yml:774:9: shellcheck reported issue in this script: SC2086:info:1:121: Double quote to prevent globbing and word splitting [shellcheck]
- name: Failure Notification
uses: rtCamp/action-slack-notify@v2
env:
Expand Down
Loading