From b2e1d119ef4b2b57fa609cccd227f552d2f9f246 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 07:23:03 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 in the gh-actions group Bumps the gh-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/php-cs-stan-unit.yml | 6 +++--- .github/workflows/php-cs.yml | 2 +- .github/workflows/php-psalm.yml | 2 +- .github/workflows/php-stan.yml | 2 +- .github/workflows/php-unit.yml | 2 +- .github/workflows/python-cs.yml | 2 +- .github/workflows/python-unit.yml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/php-cs-stan-unit.yml b/.github/workflows/php-cs-stan-unit.yml index d820973..de7c2de 100644 --- a/.github/workflows/php-cs-stan-unit.yml +++ b/.github/workflows/php-cs-stan-unit.yml @@ -30,7 +30,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}" @@ -76,7 +76,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}" @@ -144,7 +144,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/php-cs.yml b/.github/workflows/php-cs.yml index d662d84..3024261 100644 --- a/.github/workflows/php-cs.yml +++ b/.github/workflows/php-cs.yml @@ -35,7 +35,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/php-psalm.yml b/.github/workflows/php-psalm.yml index 1985a7a..c012bbc 100644 --- a/.github/workflows/php-psalm.yml +++ b/.github/workflows/php-psalm.yml @@ -35,7 +35,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/php-stan.yml b/.github/workflows/php-stan.yml index de03ace..8b62d70 100644 --- a/.github/workflows/php-stan.yml +++ b/.github/workflows/php-stan.yml @@ -36,7 +36,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ github.job }}-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/php-unit.yml b/.github/workflows/php-unit.yml index 554533e..b8b703a 100644 --- a/.github/workflows/php-unit.yml +++ b/.github/workflows/php-unit.yml @@ -77,7 +77,7 @@ jobs: run: echo "path=$(composer global config cache-dir)" >> $GITHUB_OUTPUT - name: 'Share Composer cache across runs' - uses: 'actions/cache@v5' + uses: 'actions/cache@v6' with: path: '${{ steps.cachedir.outputs.path }}' key: "composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}" diff --git a/.github/workflows/python-cs.yml b/.github/workflows/python-cs.yml index b196bd3..7169230 100644 --- a/.github/workflows/python-cs.yml +++ b/.github/workflows/python-cs.yml @@ -38,7 +38,7 @@ jobs: - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/python-unit.yml b/.github/workflows/python-unit.yml index d7dd13c..a637b4f 100644 --- a/.github/workflows/python-unit.yml +++ b/.github/workflows/python-unit.yml @@ -38,7 +38,7 @@ jobs: - name: Load cached venv id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}