Skip to content

Commit 71684e0

Browse files
Colengmsbrowntarik
andauthored
Update github actions to use nodejs 16 (#10443)
* Update github actions to use nodejs 16 * Upgrade GabrielBB/xvfb-action from 1.4 to 1.6 --------- Co-authored-by: browntarik <[email protected]>
1 parent 7a99678 commit 71684e0

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/by-design-closer-debugger .yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Actions
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- name: Install Actions
1818
run: cd ./.github/actions && npm install --production && cd ../..
1919
- name: Stale Closer

.github/workflows/by-design-closer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Actions
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
- name: Install Actions
1818
run: cd ./.github/actions && npm install --production && cd ../..
1919
- name: Stale Closer

.github/workflows/ci_linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

16-
- name: Use Node.js 14.16.x
17-
uses: actions/setup-node@v1
16+
- name: Use Node.js 16
17+
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.16.x
19+
node-version: 16
2020

2121
- name: Install Dependencies
2222
run: yarn install
@@ -35,13 +35,13 @@ jobs:
3535
working-directory: Extension
3636

3737
- name: Run unit tests
38-
uses: GabrielBB/xvfb-action@v1.4
38+
uses: GabrielBB/xvfb-action@v1.6
3939
with:
4040
run: yarn run unitTests
4141
working-directory: Extension
4242

4343
# - name: Run languageServer integration tests
44-
# uses: GabrielBB/xvfb-action@v1.4
44+
# uses: GabrielBB/xvfb-action@v1.6
4545
# with:
4646
# run: yarn run integrationTests
4747
# working-directory: Extension

.github/workflows/ci_mac.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: macos-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

16-
- name: Use Node.js 14.16.x
17-
uses: actions/setup-node@v1
16+
- name: Use Node.js 16
17+
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.16.x
19+
node-version: 16
2020

2121
- name: Install Dependencies
2222
run: yarn install --network-timeout 100000
@@ -35,13 +35,13 @@ jobs:
3535
working-directory: Extension
3636

3737
- name: Run unit tests
38-
uses: GabrielBB/xvfb-action@v1.4
38+
uses: GabrielBB/xvfb-action@v1.6
3939
with:
4040
run: yarn run unitTests
4141
working-directory: Extension
4242

4343
# - name: Run languageServer integration tests
44-
# uses: GabrielBB/xvfb-action@v1.4
44+
# uses: GabrielBB/xvfb-action@v1.6
4545
# with:
4646
# run: yarn run integrationTests
4747
# working-directory: Extension

.github/workflows/ci_windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: windows-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515

16-
- name: Use Node.js 14.16.x
17-
uses: actions/setup-node@v1
16+
- name: Use Node.js 16
17+
uses: actions/setup-node@v3
1818
with:
19-
node-version: 14.16.x
19+
node-version: 16
2020

2121
- name: Install Dependencies
2222
run: yarn install

0 commit comments

Comments
 (0)