From f739b281a706418bd76b8a6a76773c73ed5baa88 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sun, 23 Oct 2022 16:44:15 +0200 Subject: [PATCH 1/3] Update actions/cache to v3 --- .github/workflows/osrm-backend.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index e278fd5399f..057edd24132 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -79,7 +79,7 @@ jobs: with: node-version: 12 - name: Enable Node.js cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -104,7 +104,7 @@ jobs: - name: Check out the repo uses: actions/checkout@v3 - name: Enable osm.pbf cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: berlin-latest.osm.pbf key: v1-berlin-osm-pbf @@ -526,28 +526,28 @@ jobs: with: node-version: ${{ matrix.node }} - name: Enable Node.js cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: Enable compiler cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ccache-${{ matrix.name }}-${{ github.sha }} restore-keys: | ccache-${{ matrix.name }}- - name: Enable Conan cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.conan key: v6-conan-${{ matrix.name }}-${{ github.sha }} restore-keys: | v6-conan-${{ matrix.name }}- - name: Enable test cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{github.workspace}}/test/cache key: v3-test-${{ matrix.name }}-${{ github.sha }} From 9366c3d5b9e01b51f3106a8246d5692a7594011b Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sun, 23 Oct 2022 16:46:54 +0200 Subject: [PATCH 2/3] Update actions/cache to v3 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 591bb24b3af..9c048d18065 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased - Changes from 5.27.1 + - Build: + - CHANGED: Update actions/cache to v3. [#6420](https://github.com/Project-OSRM/osrm-backend/pull/6420) - Misc: - FIXED: Handle snapping parameter for all plugins in NodeJs bindings, but not for Route only. [#6417](https://github.com/Project-OSRM/osrm-backend/pull/6417) - FIXED: Fix annotations=true handling in NodeJS bindings & libosrm. [#6415](https://github.com/Project-OSRM/osrm-backend/pull/6415/) From 97abb2f6e73933d5e24bd4b93fafcdafc6a910b3 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sun, 23 Oct 2022 16:57:36 +0200 Subject: [PATCH 3/3] Update actions/cache to v3 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c048d18065..2a90bbf74ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Unreleased - Changes from 5.27.1 - Build: - - CHANGED: Update actions/cache to v3. [#6420](https://github.com/Project-OSRM/osrm-backend/pull/6420) + - CHANGED: Update actions/cache to v3. [#6420](https://github.com/Project-OSRM/osrm-backend/pull/6420) - Misc: - FIXED: Handle snapping parameter for all plugins in NodeJs bindings, but not for Route only. [#6417](https://github.com/Project-OSRM/osrm-backend/pull/6417) - FIXED: Fix annotations=true handling in NodeJS bindings & libosrm. [#6415](https://github.com/Project-OSRM/osrm-backend/pull/6415/)