File tree 5 files changed +14
-17
lines changed
5 files changed +14
-17
lines changed Original file line number Diff line number Diff line change 53
53
54
54
steps :
55
55
- name : Checkout repository
56
- uses : actions/checkout@v3
56
+ uses : actions/checkout@v2
57
57
58
58
# Initializes the CodeQL tools for scanning.
59
59
- name : Initialize CodeQL
Original file line number Diff line number Diff line change 18
18
test :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v3
22
- - uses : actions/cache@v3
21
+ - uses : actions/checkout@v2
22
+ - uses : actions/cache@v2
23
23
with :
24
24
path : ~/.npm
25
25
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Original file line number Diff line number Diff line change 20
20
package :
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v2
24
24
- run : npm i
25
25
- uses : jpoehnelt/verify-npm-files-action@main
26
26
with :
Original file line number Diff line number Diff line change 17
17
push :
18
18
branches :
19
19
- main
20
- - beta
21
20
concurrency : release
22
21
jobs :
23
22
build :
24
23
runs-on : ubuntu-latest
25
24
steps :
26
- - uses : actions/setup-node@v3
25
+ - uses : actions/setup-node@v2
27
26
with :
28
- node-version : ' 16 '
27
+ node-version : ' 14 '
29
28
- name : Checkout
30
29
uses : actions/checkout@v3
31
30
with :
32
31
token : ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
33
- - uses : actions/cache@v3
32
+ - uses : actions/cache@v2
34
33
with :
35
34
path : ~/.npm
36
35
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -44,17 +43,15 @@ jobs:
44
43
- name : Release
45
44
uses : cycjimmy/semantic-release-action@v3
46
45
with :
47
- semantic_version : 19
48
46
extra_plugins : |
49
- @semantic-release/commit-analyzer@^9
47
+ @semantic-release/commit-analyzer
50
48
semantic-release-interval
51
- @semantic-release/release-notes-generator@^10
49
+ @semantic-release/release-notes-generator
52
50
@semantic-release/git
53
- @semantic-release/github@^8
54
- @semantic-release/npm@^9
51
+ @semantic-release/github
52
+ @semantic-release/npm
55
53
@googlemaps/semantic-release-config
56
54
semantic-release-npm-deprecate
57
55
env :
58
56
GH_TOKEN : ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
59
57
NPM_TOKEN : ${{ secrets.NPM_WOMBAT_TOKEN }}
60
- RUNNER_DEBUG : 1
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
name : Test
16
- on : [push, pull_request]
16
+ on : [push, pull_request, workflow_call ]
17
17
jobs :
18
18
test :
19
19
runs-on : ubuntu-latest
20
20
steps :
21
- - uses : actions/checkout@v3
22
- - uses : actions/cache@v3
21
+ - uses : actions/checkout@v2
22
+ - uses : actions/cache@v2
23
23
with :
24
24
path : ~/.npm
25
25
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
You can’t perform that action at this time.
0 commit comments