Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
- name: Store
id: store
if: needs.file-check.outputs.run == 'true'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: dist-tarball
path: artifacts/*.tar.gz
Expand Down Expand Up @@ -313,7 +313,7 @@
- name: Store
id: store
if: needs.file-check.outputs.run == 'true'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: dist-static-${{ matrix.arch }}
path: artifacts/*.gz.run
Expand All @@ -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 @@ -418,7 +418,7 @@
timestamp-digest: SHA256
- name: Upload Installer
id: upload
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: windows-x86_64-installer
path: packaging\windows\netdata*.msi
Expand Down Expand Up @@ -508,7 +508,7 @@
- name: Store Artifacts
id: store
if: needs.file-check.outputs.run == 'true'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: final-artifacts
path: artifacts/*
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
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@
- name: Upload Cache
id: upload-cache
if: github.repository == 'netdata/netdata' && needs.file-check.outputs.run == 'true' && github.event_name == 'workflow_dispatch'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: cache-${{ steps.artifact-name.outputs.platform }}
path: /tmp/build-cache/*
Expand Down Expand Up @@ -383,7 +383,7 @@
- name: Upload digest
id: upload-digest
if: github.repository == 'netdata/netdata'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: docker-digests-${{ steps.artifact-name.outputs.platform }}
path: /tmp/digests/*
Expand Down Expand Up @@ -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 @@ -542,7 +542,7 @@
- name: Upload digest
id: upload-digest
if: github.repository == 'netdata/netdata'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: quay-digests-${{ steps.artifact-name.outputs.platform }}
path: /tmp/digests/*
Expand Down Expand Up @@ -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 @@ -702,7 +702,7 @@
- name: Upload digest
id: upload-digest
if: github.repository == 'netdata/netdata'
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: ghcr-digests-${{ steps.artifact-name.outputs.platform }}
path: /tmp/digests/*
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
id: build
if: needs.file-check.outputs.run == 'true'
shell: bash
run: |

Check warning on line 253 in .github/workflows/packaging.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:5:79: Quote this to prevent word splitting [shellcheck] Raw Output: w:.github/workflows/packaging.yml:253:9: shellcheck reported issue in this script: SC2046:warning:5:79: Quote this to prevent word splitting [shellcheck]

Check warning on line 253 in .github/workflows/packaging.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:5:20: Quote this to prevent word splitting [shellcheck] Raw Output: w:.github/workflows/packaging.yml:253:9: shellcheck reported issue in this script: SC2046:warning:5:20: Quote this to prevent word splitting [shellcheck]
docker run --security-opt seccomp=unconfined -e DISABLE_TELEMETRY=1 -e VERSION=${{ needs.version-check.outputs.version }} \
-e ENABLE_SENTRY=${{ matrix.bundle_sentry }} -e RELEASE_PIPELINE=${{ env.RELEASE_PIPELINE }} \
-e BUILD_DESTINATION=${{ matrix.distro }}${{ matrix.version }}_${{ matrix.arch }} -e UPLOAD_SENTRY=${{ env.UPLOAD_SENTRY }} \
Expand All @@ -261,7 +261,7 @@
id: artifacts
if: needs.file-check.outputs.run == 'true'
continue-on-error: true
uses: actions/upload-artifact@v6.0.0
uses: actions/upload-artifact@v7.0.0
with:
name: ${{ matrix.distro }}-${{ matrix.version }}-${{ matrix.arch }}-packages
path: ${{ github.workspace }}/artifacts/*
Expand Down
Loading