Skip to content

Commit 6872ba4

Browse files
authored
Upgrade node-version to 16 (was 14) in GitHub Actions workflows (#1064)
1 parent 1c11120 commit 6872ba4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/desktop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ jobs:
354354
if [[ "${{ job.status }}" != "success" ]]; then
355355
exit 1
356356
fi
357-
- name: Set up Node (14)
357+
- name: Set up Node (16)
358358
uses: actions/setup-node@v2
359359
with:
360-
node-version: 14.x
360+
node-version: 16.x
361361
- name: Setup Firestore Emulator
362362
uses: nick-invision/retry@v2
363363
with:

.github/workflows/integration_tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -734,10 +734,10 @@ jobs:
734734
timeout_minutes: 15
735735
max_attempts: 3
736736
command: scripts/gha/install_test_workflow_prereqs.sh -p Desktop -t true -a '${{ matrix.arch }}' -s '${{ matrix.ssl_variant }}'
737-
- name: Set up Node (14)
737+
- name: Set up Node (16)
738738
uses: actions/setup-node@v2
739739
with:
740-
node-version: 14.x
740+
node-version: 16.x
741741
- name: Setup Firestore Emulator
742742
uses: nick-invision/retry@v2
743743
with:
@@ -991,10 +991,10 @@ jobs:
991991
- id: get-device-type
992992
run: |
993993
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.android_device }} )"
994-
- name: Set up Node (14)
994+
- name: Set up Node (16)
995995
uses: actions/setup-node@v2
996996
with:
997-
node-version: 14.x
997+
node-version: 16.x
998998
- name: Setup java 17 for Firestore emulator
999999
uses: actions/setup-java@v3
10001000
with:
@@ -1133,10 +1133,10 @@ jobs:
11331133
- id: get-device-type
11341134
run: |
11351135
echo "::set-output name=device_type::$( python scripts/gha/print_matrix_configuration.py -d -k ${{ matrix.ios_device }} )"
1136-
- name: Set up Node (14)
1136+
- name: Set up Node (16)
11371137
uses: actions/setup-node@v2
11381138
with:
1139-
node-version: 14.x
1139+
node-version: 16.x
11401140
- name: Setup java for Firestore emulator
11411141
uses: actions/setup-java@v3
11421142
with:

0 commit comments

Comments
 (0)