From 765ac25c4f3b7ebc3b6e84a8dd972ef56057ead1 Mon Sep 17 00:00:00 2001 From: Remi Lehe Date: Thu, 9 May 2024 18:48:08 -0700 Subject: [PATCH] Use conda-incubator/setup-miniconda@v3 --- .github/workflows/unix.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/unix.yml b/.github/workflows/unix.yml index d0f86684..1a3f55fa 100644 --- a/.github/workflows/unix.yml +++ b/.github/workflows/unix.yml @@ -15,22 +15,11 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Cache conda - uses: actions/cache@v3 - # Increase this value to reset cache - env: {CACHE_NUMBER: 0} - with: - path: ~/conda_pkgs_dir - key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ matrix.python-version }} - - - uses: conda-incubator/setup-miniconda@v2 - name: Setup conda + - uses: conda-incubator/setup-miniconda@v3 with: auto-update-conda: true - activate-environment: testing - auto-activate-base: false + python-version: ${{ matrix.python-version }} channels: conda-forge,defaults - channel-priority: true - shell: bash -eo pipefail -l {0} name: Install dependencies