From fdf5a7acd06ce9aa59082272400500da3a7584e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 00:06:36 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/release.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c242c5c9..af75e785 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -262,7 +262,7 @@ jobs: - name: Restore PBF fixture cache id: pbf-cache if: ${{ steps.metadata.outputs.metadata-available == 'true' }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.AREA }}.osm.pbf key: geofabrik-${{ env.AREA }}-${{ steps.metadata.outputs.cache-key }} @@ -362,7 +362,7 @@ jobs: "image-version=$imageVersion" >> $env:GITHUB_OUTPUT - name: Enable vcpkg binary cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}\vcpkg-binary-cache key: vcpkg-binary-${{ runner.os }}-${{ steps.runner-image.outputs.image-os }}-${{ steps.runner-image.outputs.image-version }}-x64-windows-static-md-${{ hashFiles('vcpkg.json', 'vcpkg-configuration.json') }} @@ -480,14 +480,14 @@ jobs: sudo apt-get install -y ccache - name: Enable ccache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CCACHE_DIR }} key: ccache-${{ runner.os }}-${{ steps.runner-image.outputs.image-os }}-${{ steps.runner-image.outputs.image-version }}-${{ matrix.triplet }}-${{ hashFiles('CMakeLists.txt', 'include/**', 'src/**') }} restore-keys: ccache-${{ runner.os }}-${{ steps.runner-image.outputs.image-os }}-${{ steps.runner-image.outputs.image-version }}-${{ matrix.triplet }}- - name: Enable vcpkg binary cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}/vcpkg-binary-cache key: vcpkg-binary-${{ runner.os }}-${{ steps.runner-image.outputs.image-os }}-${{ steps.runner-image.outputs.image-version }}-${{ matrix.triplet }}-${{ hashFiles('vcpkg.json', 'vcpkg-configuration.json') }} @@ -605,7 +605,7 @@ jobs: brew install boost ccache lua shapelib rapidjson - name: Enable ccache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.CCACHE_DIR }} key: ccache-${{ runner.os }}-${{ matrix.os }}-makefile-${{ hashFiles('Makefile', 'include/**', 'src/**', 'test/**') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1f3e0e0..eaaae7ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: "image-version=$imageVersion" >> $env:GITHUB_OUTPUT - name: Enable vcpkg binary cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ github.workspace }}\vcpkg-binary-cache key: vcpkg-binary-${{ runner.os }}-${{ steps.runner-image.outputs.image-os }}-${{ steps.runner-image.outputs.image-version }}-x64-windows-static-md-${{ hashFiles('vcpkg.json', 'vcpkg-configuration.json') }}