File tree 4 files changed +16
-16
lines changed
4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
fi
27
27
- name : Setup Go
28
28
if : ${{ steps.check-release.outputs.IS_RELEASE == 'true' }}
29
- uses : actions/setup-go@v2
29
+ uses : actions/setup-go@v3
30
30
with :
31
31
go-version : ' 1.13.15'
32
32
- name : Setup Node
33
33
if : ${{ steps.check-release.outputs.IS_RELEASE == 'true' }}
34
- uses : actions/setup-node@v2
34
+ uses : actions/setup-node@v3
35
35
with :
36
36
node-version : 14
37
37
- name : Install
Original file line number Diff line number Diff line change @@ -25,20 +25,20 @@ jobs:
25
25
echo "TURBO_REMOTE_ONLY=true" >> $GITHUB_ENV
26
26
echo "TURBO_TEAM=vercel" >> $GITHUB_ENV
27
27
echo "TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}" >> $GITHUB_ENV
28
- - uses : actions/setup-go@v2
28
+ - uses : actions/setup-go@v3
29
29
with :
30
30
go-version : ' 1.13.15'
31
- - uses : actions/setup-node@v2
31
+ - uses : actions/setup-node@v3
32
32
with :
33
33
node-version : ${{ matrix.node }}
34
- - uses : actions/checkout@v2
34
+ - uses : actions/checkout@v3
35
35
with :
36
36
fetch-depth : 100
37
37
- run : git --version
38
38
- run : git fetch origin main --depth=100
39
39
- run : git fetch origin ${{ github.ref }} --depth=100
40
40
- run : git diff origin/main...HEAD --name-only
41
- - run : yarn install --network-timeout 1000000
41
+ - run : yarn install --network-timeout 1000000 --frozen-lockfile
42
42
- run : yarn run build
43
43
- run : yarn test-integration-cli
44
44
env :
Original file line number Diff line number Diff line change @@ -25,20 +25,20 @@ jobs:
25
25
echo "TURBO_REMOTE_ONLY=true" >> $GITHUB_ENV
26
26
echo "TURBO_TEAM=vercel" >> $GITHUB_ENV
27
27
echo "TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}" >> $GITHUB_ENV
28
- - uses : actions/setup-go@v2
28
+ - uses : actions/setup-go@v3
29
29
with :
30
30
go-version : ' 1.13.15'
31
- - uses : actions/setup-node@v2
31
+ - uses : actions/setup-node@v3
32
32
with :
33
33
node-version : ${{ matrix.node }}
34
- - uses : actions/checkout@v2
34
+ - uses : actions/checkout@v3
35
35
with :
36
36
fetch-depth : 100
37
37
- run : git --version
38
38
- run : git fetch origin main --depth=100
39
39
- run : git fetch origin ${{ github.ref }} --depth=100
40
40
- run : git diff origin/main...HEAD --name-only
41
- - run : yarn install --network-timeout 1000000
41
+ - run : yarn install --network-timeout 1000000 --frozen-lockfile
42
42
- run : yarn run build
43
43
- run : yarn run lint
44
44
if : matrix.os == 'ubuntu-latest' && matrix.node == 14 # only run lint once
Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ jobs:
19
19
tests : ${{ steps['set-tests'].outputs['tests'] }}
20
20
dplUrl : ${{ steps.waitForTarball.outputs.url }}
21
21
steps :
22
- - uses : actions/checkout@v2
22
+ - uses : actions/checkout@v3
23
23
- run : git --version
24
24
- run : git fetch origin main
25
- - uses : actions/setup-node@v2
25
+ - uses : actions/setup-node@v3
26
26
with :
27
27
node-version : ${{ env.NODE_VERSION }}
28
28
cache : ' yarn'
29
- - run : yarn install --network-timeout 1000000
29
+ - run : yarn install --network-timeout 1000000 --frozen-lockfile
30
30
- id : set-tests
31
31
run : |
32
32
TESTS_ARRAY=$(node utils/chunk-tests.js $SCRIPT_NAME)
@@ -58,13 +58,13 @@ jobs:
58
58
echo "TURBO_REMOTE_ONLY=true" >> $GITHUB_ENV
59
59
echo "TURBO_TEAM=vercel" >> $GITHUB_ENV
60
60
echo "TURBO_TOKEN=${{ secrets.TURBO_TOKEN }}" >> $GITHUB_ENV
61
- - uses : actions/checkout@v2
61
+ - uses : actions/checkout@v3
62
62
with :
63
63
fetch-depth : 2
64
- - uses : actions/setup-go@v2
64
+ - uses : actions/setup-go@v3
65
65
with :
66
66
go-version : ' 1.13.15'
67
- - uses : actions/setup-node@v2
67
+ - uses : actions/setup-node@v3
68
68
with :
69
69
node-version : ${{ env.NODE_VERSION }}
70
70
cache : ' yarn'
You can’t perform that action at this time.
0 commit comments