Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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') }}
Expand Down Expand Up @@ -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') }}
Expand Down Expand Up @@ -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/**') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand Down
Loading