From d6db925f89038f9ed8f9c020e1c52de9e13debab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sat, 5 Apr 2025 15:54:52 +0200 Subject: [PATCH] Downloading older NSIS version 3.08-2 --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1037f15da..473c67570 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,8 +47,11 @@ jobs: apt install -y -qq php - name: Set up NSis run: | - apt-get -y update - apt-get -y install nsis=3.08-3 + #we need the specific version - 3.0.8 as this version seems to not be flagged by AVs + wget http://archive.ubuntu.com/ubuntu/pool/universe/n/nsis/nsis-common_3.08-2_all.deb + wget http://archive.ubuntu.com/ubuntu/pool/universe/n/nsis/nsis_3.08-2_amd64.deb + dpkg -i nsis-common_3.08-2_all.deb + dpkg -i nsis_3.08-2_amd64.deb makensis -VERSION - name: Set up ant run: |