From ed772a97068279247f90f5d3e8b0274a2334ebec Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Wed, 31 Jan 2024 09:53:18 -0500 Subject: [PATCH] fix: use an apptainer setup action, since not found in apt repo --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9a5e29b..4ad15544 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,11 +33,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: install apptainer - run: | - sudo apt update - apt search apptainer - # sudo apt upgrade - # sudo apt -y install apptainer + uses: eWaterCycle/setup-apptainer@v2 + with: + apptainer-version: 1.2.5 - name: build run: apptainer build --fakeroot iguana.sif apptainer/iguana.def - uses: actions/upload-artifact@v4