From bd3afb64c4b670ff4c80284c69b8db90dfb86109 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 31 Mar 2025 18:31:15 +0200 Subject: [PATCH] chore(ci): update apt packages and proceed installation non-interactively --- .gitea/workflows/shellcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/shellcheck.yml b/.gitea/workflows/shellcheck.yml index 5fbffde..4f4188d 100644 --- a/.gitea/workflows/shellcheck.yml +++ b/.gitea/workflows/shellcheck.yml @@ -11,5 +11,5 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.2.2 - - run: apt install shellcheck + - run: apt update --yes && apt install --yes shellcheck - run: find . -type f -name "*.sh" -exec shellcheck -a {} \;