From ad39804fad1499c02180380fb49bf83fc80d9efe Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sat, 20 Aug 2022 15:03:17 +0200 Subject: [PATCH] Use the latest node on CI --- .github/workflows/osrm-backend.yml | 13 +++++-------- CHANGELOG.md | 1 + 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 9ab578065..2d0aacbc1 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -46,7 +46,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 12 - name: Enable Node.js cache @@ -348,8 +348,7 @@ jobs: - name: conan-osx-release-node-latest build_node_package: true continue-on-error: true - # TODO: Use node 'latest' once supported: https://github.com/actions/setup-node/issues/257 - node: 16 + node: latest runs-on: macos-11 BUILD_TYPE: Release CCOMPILER: clang @@ -361,8 +360,7 @@ jobs: - name: node-latest-conan-linux-release build_node_package: true continue-on-error: true - # TODO: Use node 'latest' once supported: https://github.com/actions/setup-node/issues/257 - node: 16 + node: latest runs-on: ubuntu-20.04 BUILD_TYPE: Release CLANG_VERSION: 6.0.0 @@ -373,8 +371,7 @@ jobs: - name: node-latest-conan-linux-debug build_node_package: true continue-on-error: true - # TODO: Use node 'latest' once supported: https://github.com/actions/setup-node/issues/257 - node: 16 + node: latest runs-on: ubuntu-20.04 BUILD_TYPE: Debug CLANG_VERSION: 6.0.0 @@ -444,7 +441,7 @@ jobs: - uses: actions/checkout@v2 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - name: Enable Node.js cache diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a639194e..ec176c565 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - FIXED: Fix bug with reading Set values from Lua scripts. [#6285](https://github.com/Project-OSRM/osrm-backend/pull/6285) - FIXED: Bug in bicycle profile that caused exceptions if there is a highway=bicycle in the data. [#6296](https://github.com/Project-OSRM/osrm-backend/pull/6296) - Build: + - CHANGED: Use the latest node on CI. [#6317](https://github.com/Project-OSRM/osrm-backend/pull/6317) - CHANGED: Migrate Windows CI to GitHub Actions. [#6312](https://github.com/Project-OSRM/osrm-backend/pull/6312) - ADDED: Add smoke test for Docker image. [#6313](https://github.com/Project-OSRM/osrm-backend/pull/6313) - CHANGED: Update libosmium to version 2.18.0. [#6303](https://github.com/Project-OSRM/osrm-backend/pull/6303)