From f9a95399092b14f05da35849ef8c88c555cc7efe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 20:10:45 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-nexus-api.yml | 2 +- .github/workflows/package-tests.yml | 2 +- .github/workflows/static-code-analysis.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-nexus-api.yml b/.github/workflows/deploy-nexus-api.yml index 7199aea..4917737 100644 --- a/.github/workflows/deploy-nexus-api.yml +++ b/.github/workflows/deploy-nexus-api.yml @@ -40,7 +40,7 @@ jobs: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.globals.outputs.COMPOSER_CACHE_DIR }} key: ${{ github.workflow }}-PHP_8.3-${{ hashFiles('**/composer.json') }} diff --git a/.github/workflows/package-tests.yml b/.github/workflows/package-tests.yml index 2c5874a..0012fa9 100644 --- a/.github/workflows/package-tests.yml +++ b/.github/workflows/package-tests.yml @@ -44,7 +44,7 @@ jobs: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.cache-dir.outputs.COMPOSER_CACHE_DIR }} key: ${{ github.workflow }}-PHP_8.3-${{ hashFiles('**/composer.json') }} diff --git a/.github/workflows/static-code-analysis.yml b/.github/workflows/static-code-analysis.yml index 85c05da..58c94dd 100644 --- a/.github/workflows/static-code-analysis.yml +++ b/.github/workflows/static-code-analysis.yml @@ -53,7 +53,7 @@ jobs: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.cache-dir.outputs.COMPOSER_CACHE_DIR }} key: ${{ github.workflow }}-PHP_${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ed064fa..65db275 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -66,7 +66,7 @@ jobs: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.globals.outputs.COMPOSER_CACHE_DIR }} key: ${{ github.workflow }}-PHP_${{ matrix.php-version }}-${{ matrix.os }}-${{ hashFiles('**/composer.json') }}