From 03c09ff3ce01e3c0162085435fb1f760622235e1 Mon Sep 17 00:00:00 2001 From: Jurgen Lentz Date: Wed, 28 Feb 2024 13:34:59 +0100 Subject: [PATCH] improve scipoptsuite download --- .github/actions/setup-scipoptsuite-action/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-scipoptsuite-action/action.yml b/.github/actions/setup-scipoptsuite-action/action.yml index f0370f8..cc94d5b 100644 --- a/.github/actions/setup-scipoptsuite-action/action.yml +++ b/.github/actions/setup-scipoptsuite-action/action.yml @@ -17,6 +17,6 @@ runs: - name: Install dependencies (SCIPOptSuite) run: | - wget --quiet --timestamping --directory-prefix=$HOME https://scipopt.org/download/release/SCIPOptSuite-${{ inputs.version }}-Linux-ubuntu.deb - sudo apt-get install -y ~/SCIPOptSuite-${{ inputs.version }}-Linux-ubuntu.deb + wget --quiet --no-check-certificate https://github.com/scipopt/scip/releases/download/$(echo "v${{inputs.version}}" | tr -d '.')/SCIPOptSuite-${{ inputs.version }}-Linux-ubuntu20.deb + sudo apt-get update && sudo apt install -y ./SCIPOptSuite-${{ inputs.version }}-Linux-ubuntu20.deb shell: bash