Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Actions] CI - Bump Node JS to v18 in CI Pipeline #4898

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.6.0
with:
node-version: '16.x'
node-version: '18.x'
- name: yarn install (with retry)
uses: nick-fields/retry@v2.8.3
with:
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3.5.3
- uses: actions/setup-node@v3.6.0
with:
node-version: '16.x'
node-version: '18.x'
- name: js-flipper - yarn install (with retry)
uses: nick-fields/retry@v2.8.3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: install
working-directory: ${{env.doctor-directory}}
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: install
working-directory: ${{env.pkg-directory}}
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x]
node-version: [18.x]
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Install
run: yarn
- name: Set versions
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/react-native-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.5
with:
node-version: 16.x
node-version: '18.x'
- uses: maxim-lobanov/setup-cocoapods@v1
with:
# Path to Podfile.lock file to determine Cocoapods version
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.5
with:
node-version: 16.x
node-version: '18.x'
- name: set up JDK
uses: actions/setup-java@v1
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2.1.5
with:
node-version: 16.x
node-version: '18.x'
- uses: nuget/setup-nuget@v1
with:
nuget-version: '5.x'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
ref: ${{ needs.release.outputs.tag }}
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Install
uses: nick-invision/retry@v2.6.0
with:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
ref: ${{ needs.release.outputs.tag }}
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Install
uses: nick-invision/retry@v2.6.0
with:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
ref: ${{ needs.release.outputs.tag }}
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Install
uses: nick-invision/retry@v2.6.0
with:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
ref: ${{ needs.release.outputs.tag }}
- uses: actions/setup-node@v1
with:
node-version: '16.x'
node-version: '18.x'
- name: Install
uses: nick-invision/retry@v2.0.0
with:
Expand Down