Skip to content

Commit b7b0660

Browse files
committedApr 18, 2024
Revert "Update various github actions and node versions (#2251)"
This reverts commit 3ce4929.
1 parent 3cef916 commit b7b0660

File tree

3 files changed

+24
-24
lines changed

3 files changed

+24
-24
lines changed
 

‎.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414
steps:
1515
- uses: google/wireit@setup-github-actions-caching/v1
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v3
1818
with:
1919
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2020
fetch-depth: 0
2121

22-
- name: Setup Node.js 18.x
23-
uses: actions/setup-node@v4
22+
- name: Setup Node.js 16.x
23+
uses: actions/setup-node@v3
2424
with:
25-
node-version: 18.x
25+
node-version: 16.x
2626
registry-url: 'https://registry.npmjs.org'
2727

2828
- name: Install Dependencies
29-
run: npm ci
29+
run: npm install --ci
3030

3131
- name: Create Release Pull Request or Publish to npm
3232
id: changesets

‎.github/workflows/verify.yml

+18-18
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: google/wireit@setup-github-actions-caching/v1
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v2
1212

1313
- name: Sanity check
1414
run: node ./scripts/lock-scan.js
1515

16-
- name: Setup Node 18.x
17-
uses: actions/setup-node@v4
16+
- name: Setup Node 16.x
17+
uses: actions/setup-node@v1
1818
with:
19-
node-version: 18.x
19+
node-version: 16.x
2020

2121
- name: Install Dependencies
22-
run: npm ci
22+
run: npm install --ci
2323

2424
- name: Lint
2525
run: npm run lint
@@ -32,15 +32,15 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: google/wireit@setup-github-actions-caching/v1
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v2
3636

37-
- name: Setup Node 18.x
38-
uses: actions/setup-node@v4
37+
- name: Setup Node 16.x
38+
uses: actions/setup-node@v1
3939
with:
40-
node-version: 18.x
40+
node-version: 16.x
4141

4242
- name: Install Dependencies
43-
run: npm ci
43+
run: npm install --ci
4444

4545
- uses: microsoft/playwright-github-action@v1
4646

@@ -52,19 +52,19 @@ jobs:
5252
runs-on: ${{ matrix.os }}
5353
strategy:
5454
matrix:
55-
node-version: [18.x]
55+
node-version: [16.x]
5656
os: [ubuntu-latest]
5757
steps:
5858
- uses: google/wireit@setup-github-actions-caching/v1
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v2
6060

6161
- name: Setup Node ${{ matrix.node-version }}
62-
uses: actions/setup-node@v4
62+
uses: actions/setup-node@v1
6363
with:
6464
node-version: ${{ matrix.node-version }}
6565

6666
- name: Install Dependencies
67-
run: npm ci
67+
run: npm install --ci
6868

6969
- name: Test
7070
run: npm run test:node
@@ -75,19 +75,19 @@ jobs:
7575
runs-on: ${{ matrix.os }}
7676
strategy:
7777
matrix:
78-
node-version: [18.x]
78+
node-version: [16.x]
7979
os: [windows-latest]
8080
steps:
8181
- uses: google/wireit@setup-github-actions-caching/v1
82-
- uses: actions/checkout@v4
82+
- uses: actions/checkout@v2
8383

8484
- name: Setup Node ${{ matrix.node-version }}
85-
uses: actions/setup-node@v4
85+
uses: actions/setup-node@v1
8686
with:
8787
node-version: ${{ matrix.node-version }}
8888

8989
- name: Install Dependencies
90-
run: npm ci
90+
run: npm install --ci
9191

9292
- name: Test
9393
run: npm run test:node

‎.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
16

0 commit comments

Comments
 (0)