From 04364385fa7d651b97c86648062f3a4982699ecb Mon Sep 17 00:00:00 2001 From: Roger Barker Date: Fri, 26 Apr 2024 20:05:02 -0500 Subject: [PATCH] switched protocol from curl to wget Signed-off-by: Roger Barker --- .github/workflows/proxy-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/proxy-tests.yml b/.github/workflows/proxy-tests.yml index 2fe262d..a39eadb 100644 --- a/.github/workflows/proxy-tests.yml +++ b/.github/workflows/proxy-tests.yml @@ -50,8 +50,8 @@ jobs: - name: Luarocks Install run: | - curl https://luarocks.org/releases/luarocks-3.8.0.tar.gz - tar xzfp luarocks-3.8.0.tar.gz && cd luarocks-3.8.0 + wget https://luarocks.org/releases/luarocks-3.8.0.tar.gz + tar xzfp luarocks-3.8.0.tar.gz; cd luarocks-3.8.0 ./configure && make && sudo make install - name: Install lunatest