diff --git a/.github/workflows/pr_check_workflow.yml b/.github/workflows/pr_check_workflow.yml index 346b85905376..40f98d2f3042 100644 --- a/.github/workflows/pr_check_workflow.yml +++ b/.github/workflows/pr_check_workflow.yml @@ -14,16 +14,12 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10.23.1] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - name: Use Node.js + uses: actions/setup-node@v2 with: - node-version: ${{ matrix.node-version }} + node-version: '10.24.1' + check-latest: false - run: yarn osd bootstrap - run: yarn lint diff --git a/.node-version b/.node-version index 2baa2d433a86..dc08cc7bd07a 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -10.23.1 +10.24.1 diff --git a/.nvmrc b/.nvmrc index 2baa2d433a86..dc08cc7bd07a 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -10.23.1 +10.24.1 diff --git a/Dockerfile b/Dockerfile index 5939cf042547..521c6fa0149c 100755 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_VERSION=10.23.1 +ARG NODE_VERSION=10.24.1 FROM node:${NODE_VERSION} AS base ENV HOME '.' diff --git a/README.md b/README.md index 4fef8189a09e..2214c0703470 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Or To run Dashboards with OpenSearch * [Yarn](https://classic.yarnpkg.com/en/docs/install) is required for building and running the OpenSearch Dashboards -* Install [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md) to use the Node 10.23.1 version as it is required +* Install [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md) to use the Node 10.24.1 version as it is required * Run ```yarn osd bootstrap``` in the OpenSearch Dashboards directory * While OpenSearch is running locally, run ```yarn start``` * You can now navigate to ```http://localhost:5603``` where Dashboards runs by default diff --git a/package.json b/package.json index 48c4a4e4274a..53dfadfd1c4d 100644 --- a/package.json +++ b/package.json @@ -469,7 +469,7 @@ "zlib": "^1.0.5" }, "engines": { - "node": "10.23.1", + "node": "10.24.1", "yarn": "^1.21.1" } }