Upgrade to Node 14 for Actions (#2928)
Summary: I believe that matches what we have internally. This has been causing some upgrades to fail. Pull Request resolved: https://github.com/facebook/flipper/pull/2928 Reviewed By: aigoncharov Differential Revision: D31324394 Pulled By: passy fbshipit-source-id: eec38dcc6322e3e8957bbc20bf74d343855be8c0
This commit is contained in:
committed by
Facebook GitHub Bot
parent
27938a7e96
commit
111177b44e
2
.github/workflows/nodejs-doctor.yml
vendored
2
.github/workflows/nodejs-doctor.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: install
|
- name: install
|
||||||
working-directory: ${{env.doctor-directory}}
|
working-directory: ${{env.doctor-directory}}
|
||||||
run: yarn
|
run: yarn
|
||||||
|
|||||||
2
.github/workflows/nodejs-pkg.yml
vendored
2
.github/workflows/nodejs-pkg.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: install
|
- name: install
|
||||||
working-directory: ${{env.pkg-directory}}
|
working-directory: ${{env.pkg-directory}}
|
||||||
run: yarn
|
run: yarn
|
||||||
|
|||||||
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
@@ -13,7 +13,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [12.x]
|
node-version: [14.x]
|
||||||
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
|
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
2
.github/workflows/publish-npm.yml
vendored
2
.github/workflows/publish-npm.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: Set versions
|
- name: Set versions
|
||||||
|
|||||||
4
.github/workflows/react-native-example.yml
vendored
4
.github/workflows/react-native-example.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.1.5
|
- uses: actions/setup-node@v2.1.5
|
||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: 14.x
|
||||||
- uses: maxim-lobanov/setup-cocoapods@v1
|
- uses: maxim-lobanov/setup-cocoapods@v1
|
||||||
with:
|
with:
|
||||||
# Path to Podfile.lock file to determine Cocoapods version
|
# Path to Podfile.lock file to determine Cocoapods version
|
||||||
@@ -37,7 +37,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v2.1.5
|
- uses: actions/setup-node@v2.1.5
|
||||||
with:
|
with:
|
||||||
node-version: 12.x
|
node-version: 14.x
|
||||||
- name: set up JDK 1.8
|
- name: set up JDK 1.8
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
|
|||||||
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@@ -56,7 +56,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.0.0
|
uses: nick-invision/retry@v2.0.0
|
||||||
with:
|
with:
|
||||||
@@ -88,7 +88,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.0.0
|
uses: nick-invision/retry@v2.0.0
|
||||||
with:
|
with:
|
||||||
@@ -120,7 +120,7 @@ jobs:
|
|||||||
ref: ${{ needs.release.outputs.tag }}
|
ref: ${{ needs.release.outputs.tag }}
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '12.x'
|
node-version: '14.x'
|
||||||
- name: Install
|
- name: Install
|
||||||
uses: nick-invision/retry@v2.0.0
|
uses: nick-invision/retry@v2.0.0
|
||||||
with:
|
with:
|
||||||
|
|||||||
Reference in New Issue
Block a user