Skip to content
Merged
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 @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand Down Expand Up @@ -74,7 +74,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
Expand All @@ -88,10 +88,10 @@
path: artifacts
merge-multiple: true
- name: Set release_tag
run: |

Check warning on line 91 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/release.yml:91:9: shellcheck reported issue in this script: SC2086:info:1:41: Double quote to prevent globbing and word splitting [shellcheck]
echo "RELEASE_TAG=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Consolidate Artifacts
run: |

Check warning on line 94 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2231:info:3:41: Quote expansions in this for loop glob to prevent wordsplitting, e.g. "$dir"/*.txt [shellcheck] Raw Output: i:.github/workflows/release.yml:94:9: shellcheck reported issue in this script: SC2231:info:3:41: Quote expansions in this for loop glob to prevent wordsplitting, e.g. "$dir"/*.txt [shellcheck]
mkdir -p final-artifacts
for libc in static glibc musl; do
for pkg in artifacts/netdata_ebpf-*_*-${libc}.tar; do
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
yamllint: ${{ steps.yamllint.outputs.run }}
steps:
- name: Clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
- name: Check files for actionlint
id: actionlint
run: |

Check warning on line 28 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:28:9: shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 28 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:28:9: shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
if git diff --name-only origin/${{ github.base_ref }} HEAD | grep -Eq '\.github/workflows/.*' ; then
echo "run=true" >> $GITHUB_OUTPUT
echo 'GitHub Actions workflows have changed, need to run actionlint.'
Expand All @@ -34,7 +34,7 @@
fi
- name: Check files for hadolint
id: hadolint
run: |

Check warning on line 37 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:37:9: shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 37 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:37:9: shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
if git diff --name-only origin/${{ github.base_ref }} HEAD | grep -Eq '.*Dockerfile.*' ; then
echo "run=true" >> $GITHUB_OUTPUT
echo 'Dockerfiles have changed, need to run Hadolint.'
Expand All @@ -43,7 +43,7 @@
fi
- name: Check files for shellcheck
id: shellcheck
run: |

Check warning on line 46 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:46:9: shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 46 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:46:9: shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
if git diff --name-only origin/${{ github.base_ref }} HEAD | grep -Eq '.*\.sh.*' ; then
echo "run=true" >> $GITHUB_OUTPUT
echo 'Shell scripts have changed, need to run shellcheck.'
Expand All @@ -52,7 +52,7 @@
fi
- name: Check files for yamllint
id: yamllint
run: |

Check warning on line 55 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:55:9: shellcheck reported issue in this script: SC2086:info:5:23: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 55 in .github/workflows/review.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/review.yml:55:9: shellcheck reported issue in this script: SC2086:info:2:22: Double quote to prevent globbing and word splitting [shellcheck]
if git diff --name-only origin/${{ github.base_ref }} HEAD | grep -Eq '.*\.ya?ml' ; then
echo "run=true" >> $GITHUB_OUTPUT
echo 'YAML files have changed, need to run yamllint.'
Expand All @@ -67,7 +67,7 @@
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -84,7 +84,7 @@
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Run hadolint
Expand All @@ -100,7 +100,7 @@
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -120,7 +120,7 @@
runs-on: ubuntu-latest
steps:
- name: Git clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
fetch-depth: 0
Expand Down
Loading