File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ name: CI
3
3
on :
4
4
push :
5
5
branches :
6
- - master
6
+ - main
7
7
pull_request :
8
8
9
9
jobs :
10
10
lint :
11
11
name : Lint
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v3
15
- - uses : actions/setup-node@v3
14
+ - uses : actions/checkout@v4
15
+ - uses : actions/setup-node@v4
16
16
with :
17
17
node-version-file : " package.json"
18
18
- run : npm ci
22
22
name : Test
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v3
26
- - uses : actions/setup-node@v3
25
+ - uses : actions/checkout@v4
26
+ - uses : actions/setup-node@v4
27
27
with :
28
28
node-version-file : " package.json"
29
29
- run : npm ci
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
name : a job for regression testing
9
9
steps :
10
- - uses : actions/checkout@v3
10
+ - uses : actions/checkout@v4
11
11
with :
12
12
fetch-depth : 0
13
13
submodules : true
14
- - uses : actions/setup-node@v3
14
+ - uses : actions/setup-node@v4
15
15
with :
16
16
node-version-file : " package.json"
17
17
- name : configure git
Original file line number Diff line number Diff line change @@ -10,15 +10,15 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v3
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Configure git user
16
16
run : |
17
17
git config user.name github-actions
18
18
git config user.email [email protected]
19
19
20
20
- name : Setup Node.js
21
- uses : actions/setup-node@v3
21
+ uses : actions/setup-node@v4
22
22
with :
23
23
node-version-file : " package.json"
24
24
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ async function createPullRequest() {
78
78
...github . context . repo ,
79
79
title : `Update projects.json (${ formattedDate } )` ,
80
80
head : branchName ,
81
- base : "master " ,
81
+ base : "main " ,
82
82
maintainer_can_modify : true ,
83
83
} ) ;
84
84
}
You can’t perform that action at this time.
0 commit comments