From 41d7b2a307ad6d3a5efa8b5369b4d3e6cbe6a49e Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Thu, 16 Jun 2022 06:27:01 -0700 Subject: [PATCH] Update OSS node version (#3822) Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/3822 Update Node version in CI pipeline Reviewed By: lblasa Differential Revision: D37207646 fbshipit-source-id: 157d1da9b01ca3ad34047908abc629f84d6736bc --- .github/workflows/js.yml | 4 ++-- .github/workflows/nodejs-doctor.yml | 2 +- .github/workflows/nodejs-pkg.yml | 2 +- .github/workflows/publish-npm.yml | 2 +- .github/workflows/release.yml | 8 ++++---- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 1153f36de..7a8e5c82f 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' - name: yarn install (with retry) uses: nick-invision/retry@v2.6.0 with: @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '14.x' + node-version: '16.x' - name: js-flipper - yarn install (with retry) uses: nick-invision/retry@v2.6.0 with: diff --git a/.github/workflows/nodejs-doctor.yml b/.github/workflows/nodejs-doctor.yml index 4adf3be8d..7dab0b5b7 100644 --- a/.github/workflows/nodejs-doctor.yml +++ b/.github/workflows/nodejs-doctor.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: install working-directory: ${{env.doctor-directory}} run: yarn diff --git a/.github/workflows/nodejs-pkg.yml b/.github/workflows/nodejs-pkg.yml index 1f9882456..c9e4166e9 100644 --- a/.github/workflows/nodejs-pkg.yml +++ b/.github/workflows/nodejs-pkg.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: install working-directory: ${{env.pkg-directory}} run: yarn diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index d0c4281af..8847a8582 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install run: yarn - name: Set versions diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 747fc3e9d..183421857 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,7 +56,7 @@ jobs: ref: ${{ needs.release.outputs.tag }} - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install uses: nick-invision/retry@v2.6.0 with: @@ -88,7 +88,7 @@ jobs: ref: ${{ needs.release.outputs.tag }} - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install uses: nick-invision/retry@v2.6.0 with: @@ -120,7 +120,7 @@ jobs: ref: ${{ needs.release.outputs.tag }} - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install uses: nick-invision/retry@v2.6.0 with: @@ -154,7 +154,7 @@ jobs: ref: ${{ needs.release.outputs.tag }} - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install uses: nick-invision/retry@v2.0.0 with: