Skip to content

Commit d02f13c

Browse files
authored
Update actions/setup-node to version 2 (#8442)
1 parent 49d48d4 commit d02f13c

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

.github/workflows/release.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@ jobs:
88
if: github.repository == 'remix-run/react-router'
99
runs-on: ubuntu-latest
1010

11-
strategy:
12-
matrix:
13-
node-version: [14.x]
14-
1511
steps:
1612
- uses: actions/checkout@v2
1713

18-
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v1
14+
- name: Set up Node
15+
uses: actions/setup-node@v2
2016
with:
21-
node-version: ${{ matrix.node-version }}
17+
node-version: 14
18+
check-latest: true
19+
cache: yarn
2220

2321
- name: Install dependencies
2422
run: yarn install --frozen-lockfile

.github/workflows/test.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,15 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111

12-
strategy:
13-
matrix:
14-
node-version: [14.x]
15-
1612
steps:
1713
- uses: actions/checkout@v2
1814

19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
15+
- name: Set up Node
16+
uses: actions/setup-node@v2
2117
with:
22-
node-version: ${{ matrix.node-version }}
18+
node-version: 14
19+
check-latest: true
20+
cache: yarn
2321

2422
- name: Install dependencies
2523
run: yarn install --frozen-lockfile

contributors.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
- elylucas
22
- hongji00
33
- JakubDrozd
4+
- jonkoops
45
- kkirsche
56
- markivancho
67
- mcansh

0 commit comments

Comments
 (0)