File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 9
9
homebrew :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
+ with :
14
+ fetch-depth : 0
15
+ persist-credentials : false
16
+ token : ${{secrets.gh_token}}
13
17
- uses : actions/setup-node@v2
14
18
with :
15
19
node-version : 16
Original file line number Diff line number Diff line change 8
8
notify :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v2
11
+ - uses : actions/checkout@v3
12
+ with :
13
+ fetch-depth : 0
14
+ persist-credentials : false
15
+ token : ${{secrets.gh_token}}
12
16
- uses : actions/setup-node@v2
13
17
with :
14
18
node-version : 16
Original file line number Diff line number Diff line change 11
11
pr-validation :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v3
15
+ with :
16
+ fetch-depth : 0
17
+ persist-credentials : false
18
+ token : ${{secrets.gh_token}}
15
19
- run : |
16
20
if [ "$TARGET_BRANCH" == "master" ] && [ "$SOURCE_BRANCH" == "beta" ]; then
17
21
echo "Merge from $SOURCE_BRANCH to $TARGET_BRANCH is valid"
Original file line number Diff line number Diff line change @@ -15,11 +15,12 @@ jobs:
15
15
build :
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v3
19
19
with :
20
20
fetch-depth : 0
21
21
persist-credentials : false
22
- - uses : actions/setup-node@v2
22
+ token : ${{secrets.gh_token}}
23
+ - uses : actions/setup-node@v3
23
24
with :
24
25
node-version : 16
25
26
registry-url : ' https://registry.npmjs.org'
You can’t perform that action at this time.
0 commit comments