From 28bf1bad666129a6063ef5d616d438cf652b8822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Wed, 17 Apr 2024 18:45:30 +0200 Subject: [PATCH] fix(ci/cd): Bad job name (#48) * feat(ci/cd): Make workflows compatible with medium act images for reference: https://nektosact.com/usage/runners.html [#69] Make workflow compatible with medium act images https://openproject.stefka.eu/work_packages/69 * fix(ci/cd): use sudo to install cargo * fix(ci/cd): Luacheck failing install on Gitea Install luacheck using apt and cache the install [#69] Make workflow compatible with medium act images https://openproject.stefka.eu/work_packages/69 * feat(ci/cd): Cache apt install cargo * fix(ci/cd): remove unnecessary comments * fix(ci/cd): Bad job name --- .github/workflows/luacheck.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml index 932d7a5..5b47412 100644 --- a/.github/workflows/luacheck.yml +++ b/.github/workflows/luacheck.yml @@ -6,11 +6,11 @@ jobs: steps: - name: Update repositories run: sudo apt update - - name: Install luarocks + - name: Install Luacheck uses: awalsh128/cache-apt-pkgs-action@latest with: packages: lua-check - name: Checkout uses: actions/checkout@v3 - name: Luacheck linter - run: luacheck --config .luacheckrc . + run: luacheck --config .luacheckrc . \ No newline at end of file