Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@
SLACK_ICON_EMOJI: ':github-actions:'
SLACK_TITLE: 'Static build failed:'
SLACK_USERNAME: 'GitHub Actions'
SLACK_MESSAGE: |-

Check failure on line 329 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 property "build" is not defined in object type {cache: {conclusion: string; outcome: string; outputs: {cache-hit: string}}; cache-key: {conclusion: string; outcome: string; outputs: {string => string}}; channel: {conclusion: string; outcome: string; outputs: {string => string}}; checkout: {conclusion: string; outcome: string; outputs: {commit: string; ref: string}}; fix-tags: {conclusion: string; outcome: string; outputs: {string => string}}; qemu: {conclusion: string; outcome: string; outputs: {string => string}}; skip: {conclusion: string; outcome: string; outputs: {string => string}}; store: {conclusion: string; outcome: string; outputs: {string => string}}} [expression] Raw Output: e:.github/workflows/build.yml:329:290: property "build" is not defined in object type {cache: {conclusion: string; outcome: string; outputs: {cache-hit: string}}; cache-key: {conclusion: string; outcome: string; outputs: {string => string}}; channel: {conclusion: string; outcome: string; outputs: {string => string}}; checkout: {conclusion: string; outcome: string; outputs: {commit: string; ref: string}}; fix-tags: {conclusion: string; outcome: string; outputs: {string => string}}; qemu: {conclusion: string; outcome: string; outputs: {string => string}}; skip: {conclusion: string; outcome: string; outputs: {string => string}}; store: {conclusion: string; outcome: string; outputs: {string => string}}} [expression]
${{ github.repository }}: Failed to create static installer archive for ${{ matrix.arch }}.
Checkout: ${{ steps.checkout.outcome }}
Fix Tags: ${{ steps.fix-tags.outcome }}
Expand Down Expand Up @@ -720,7 +720,7 @@
- name: Run Updater Check
id: check
if: needs.file-check.outputs.run == 'true'
run: |

Check warning on line 723 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:11: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/build.yml:723:9: shellcheck reported issue in this script: SC2086:info:2:11: Double quote to prevent globbing and word splitting [shellcheck]
docker run --security-opt seccomp=unconfined -e DISABLE_TELEMETRY=1 --network host \
-v $PWD:/netdata -w /netdata \
ubuntu:latest /bin/sh -x /netdata/.github/scripts/run-updater-check.sh
Expand Down Expand Up @@ -1018,7 +1018,7 @@
submodules: recursive
- name: Setup Buildx
id: buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Build test environment
id: build
uses: Wandalen/wretry.action@v3
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
- name: Setup Buildx
id: prepare
if: needs.file-check.outputs.run == 'true'
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Build Image
id: build
if: needs.file-check.outputs.run == 'true'
Expand Down Expand Up @@ -353,7 +353,7 @@
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
Expand Down Expand Up @@ -436,7 +436,7 @@
merge-multiple: true
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
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 @@ -511,7 +511,7 @@
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
Expand Down Expand Up @@ -595,7 +595,7 @@
merge-multiple: true
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
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 @@ -671,7 +671,7 @@
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
Expand Down Expand Up @@ -755,7 +755,7 @@
merge-multiple: true
- name: Setup Buildx
id: prepare
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: Registry Login
id: login
if: github.repository == 'netdata/netdata'
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