diff --git a/.github/workflows/laravel-tests.yml b/.github/workflows/laravel-tests.yml index f2f72df..4c7d0cb 100644 --- a/.github/workflows/laravel-tests.yml +++ b/.github/workflows/laravel-tests.yml @@ -47,7 +47,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache Composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -122,7 +122,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache Composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index c3295ba..63c5962 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -32,7 +32,7 @@ jobs: virtualenvs-in-project: true - name: Cache Poetry dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ inputs.working_directory }}/.venv key: venv-${{ matrix.os }}-${{ hashFiles(format('{0}/poetry.lock', inputs.working_directory)) }}