From ce752fc1e078c146ae1f6cba52186f552f9983e4 Mon Sep 17 00:00:00 2001 From: Kristaps Berzinch Date: Sat, 2 Mar 2024 17:48:33 -0500 Subject: [PATCH] Bump to actions/cache v4 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e00bd6a72..f44df3137 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Setup Composer cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} @@ -86,7 +86,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Setup composer cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} @@ -126,7 +126,7 @@ jobs: uses: abatilo/actions-poetry@v2 - name: Cache the virtualenv - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pypoetry key: venv-${{ hashFiles('poetry.lock') }}