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
4 changes: 2 additions & 2 deletions .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 @@ -380,7 +380,7 @@
- name: Sign Agent Code
id: sign-agent
if: needs.file-check.outputs.run == 'true' && github.event_name != 'pull_request'
uses: azure/artifact-signing-action@v1.0.0
uses: azure/artifact-signing-action@v1.1.0
with:
azure-tenant-id: ${{ secrets.CODE_SIGNING_TENNANT_ID }}
azure-client-id: ${{ secrets.CODE_SIGNING_CLIENT_ID }}
Expand All @@ -403,7 +403,7 @@
- name: Sign Installer
id: sign-installer
if: needs.file-check.outputs.run == 'true' && github.event_name != 'pull_request'
uses: azure/artifact-signing-action@v1.0.0
uses: azure/artifact-signing-action@v1.1.0
with:
azure-tenant-id: ${{ secrets.CODE_SIGNING_TENNANT_ID }}
azure-client-id: ${{ secrets.CODE_SIGNING_CLIENT_ID }}
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
Loading