From 9eeaea27832427b9b4996901ae1130cfc5031b74 Mon Sep 17 00:00:00 2001 From: "anaconda-renovate[bot]" Date: Mon, 4 Mar 2024 01:08:12 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1350319..4642715 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,14 +31,14 @@ jobs: # have already built the testbed. Any small file will do - id: cache-key name: Retrieve cache key - uses: actions/cache@v2 + uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4 with: path: ./LICENSE key: key-${{ matrix.os }}-${{ hashFiles('testbed') }} - id: cache name: Retrieve or create the conda cache if: steps.cache-key.outputs.cache-hit != 'true' - uses: actions/cache@v2 + uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4 with: path: ${{ steps.conda-root.outputs.value }} key: testbed-${{ matrix.os }}-${{ hashFiles('testbed') }} @@ -67,7 +67,7 @@ jobs: echo "CONDA_ROOT=$CONDA_ROOT" >> $GITHUB_ENV echo "CONDA_ROOT: $CONDA_ROOT" - name: Retrieve the testbed - uses: actions/cache@v2 + uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4 with: path: ${{ steps.conda-root.outputs.value }} key: testbed-${{ matrix.os }}-${{ hashFiles('testbed') }}