From 719a9e62ac88be18a75ee8e9092b2ace40371bf7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 16:11:39 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/php-client.yml | 2 +- .github/workflows/python-client.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-client.yml b/.github/workflows/php-client.yml index 6fea3be7..9fec137c 100644 --- a/.github/workflows/php-client.yml +++ b/.github/workflows/php-client.yml @@ -34,7 +34,7 @@ jobs: run: | echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/python-client.yml b/.github/workflows/python-client.yml index 9ee19c70..6ea9e118 100644 --- a/.github/workflows/python-client.yml +++ b/.github/workflows/python-client.yml @@ -32,7 +32,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-${{ matrix.python-version }}-pip-${{ hashFiles('**/setup.py') }}