From 4dd3c2dd4cc5b2e705c3d66be16c4ad2b787e772 Mon Sep 17 00:00:00 2001 From: Ludovico Bianchi Date: Wed, 28 Feb 2024 18:06:16 -0600 Subject: [PATCH] Pin ampl-scip-version to 20240121 (#1354) --- .github/actions/setup-idaes/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-idaes/action.yml b/.github/actions/setup-idaes/action.yml index 61bab7c906..ffe111db04 100644 --- a/.github/actions/setup-idaes/action.yml +++ b/.github/actions/setup-idaes/action.yml @@ -8,6 +8,10 @@ inputs: description: 'Command to use to install `install-target`' required: false default: pip --no-cache-dir install --progress-bar off + ampl-scip-version: + description: Version of AMPL Scip solver to install + required: false + default: '20240121' runs: using: "composite" steps: @@ -46,5 +50,5 @@ runs: shell: bash -l {0} run: | echo '::group::Output of "pip install ampl_module_scip" command' - ${{ inputs.install-command }} --index-url https://pypi.ampl.com ampl_module_scip + ${{ inputs.install-command }} --index-url https://pypi.ampl.com ampl_module_scip==${{ inputs.ampl-scip-version }} echo '::endgroup::'