From 643339e2e8db116f108f1d3e7b2ffdac0e9cfeda Mon Sep 17 00:00:00 2001 From: Olly Pomeroy Date: Wed, 9 Apr 2025 14:11:35 +0100 Subject: [PATCH] ci: migrate to built in shellcheck action Signed-off-by: Olly Pomeroy --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc85b71..ac7d575 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,6 @@ jobs: shellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run ShellCheck - uses: ludeeus/action-shellcheck@master + run: find . -type f -name "*.sh" -exec shellcheck {} + \ No newline at end of file