From a826d79682ef2711a57a10fa6105d0f2b1a4f1cc Mon Sep 17 00:00:00 2001 From: Aire-One Date: Sat, 22 Jan 2022 14:18:05 +0100 Subject: [PATCH] bump(gh-actions) luarocks 3.8.0 Luarocks have some fixes to support Lua 5.4. We need to use the latest version. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index abce4894..533e8ac4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -166,12 +166,12 @@ jobs: with: path: /tmp/luarocks # The build input for luarocks changes per test, so we need separate caches - key: ${{ github.workflow }}-${{ runner.os }}-${{ matrix.test_name }}-luarocks-3.5.0 + key: ${{ github.workflow }}-${{ runner.os }}-${{ matrix.test_name }}-luarocks-3.8.0 - name: Install fresh Luarocks if: steps.cache-luarocks.outputs.cache-hit != 'true' run: | - wget -O /tmp/luarocks.tar.gz https://github.com/luarocks/luarocks/archive/v3.5.0.tar.gz + wget -O /tmp/luarocks.tar.gz https://github.com/luarocks/luarocks/archive/v3.8.0.tar.gz mkdir /tmp/luarocks tar -xf /tmp/luarocks.tar.gz -C /tmp/luarocks --strip-components=1 cd /tmp/luarocks