From 1c4310b6dd985ff200be08c1341b7210d24e623d Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Fri, 30 Jul 2021 18:35:46 +0100 Subject: [PATCH] GitHub Actions: Fix docker container name --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8cd124f..1c869c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,7 +2,7 @@ name: "CI Tests" on: [push] jobs: Syntax-Check: - runs-on: minideb + runs-on: bitnami/minideb steps: - name: Install Dependencies run: install_packages lua5.1 @@ -16,7 +16,7 @@ jobs: - name: Perform Check run: find . -type f -name '*.lua' -not -path '*luarocks*' -not -path '*.git/*' -print0 | xargs -0 -n1 -P "$(nproc)" luac -p; Busted: - runs-on: minideb + runs-on: bitnami/minideb steps: - name: Install Dependencies run: install_packages lua5.1 luarocks