File tree Expand file tree Collapse file tree 10 files changed +24
-24
lines changed Expand file tree Collapse file tree 10 files changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ runs:
23
23
using : composite
24
24
steps :
25
25
- name : Setup Node.js
26
- uses : actions/setup-node@v3
26
+ uses : actions/setup-node@v4
27
27
if : inputs.install_dependencies == 'true'
28
28
with :
29
29
cache : npm
30
30
node-version : ${{ inputs.node_version }}
31
31
registry-url : ${{ inputs.registry_url }}
32
32
- name : Setup Node.js without cache
33
- uses : actions/setup-node@v3
33
+ uses : actions/setup-node@v4
34
34
if : inputs.install_dependencies == 'false'
35
35
with :
36
36
node-version : ${{ inputs.node_version }}
Original file line number Diff line number Diff line change 25
25
timeout-minutes : 30
26
26
steps :
27
27
- name : Checkout
28
- uses : actions/checkout@v3
28
+ uses : actions/checkout@v4
29
29
- name : Setup
30
30
uses : ./.github/actions/setup
31
31
with :
Original file line number Diff line number Diff line change 27
27
timeout-minutes : 30
28
28
steps :
29
29
- name : Checkout
30
- uses : actions/checkout@v3
30
+ uses : actions/checkout@v4
31
31
- name : Setup
32
32
uses : ./.github/actions/setup
33
33
with :
42
42
id : meta
43
43
run : echo "tgz=$(ls *.tgz | head -n1)" >> $GITHUB_OUTPUT
44
44
- name : Publish
45
- uses : JS-DevTools/npm-publish@v2
45
+ uses : JS-DevTools/npm-publish@v3
46
46
with :
47
47
access : restricted
48
48
token : ${{ secrets.registry_token }}
Original file line number Diff line number Diff line change 24
24
os_name : Linux
25
25
steps :
26
26
- name : Checkout
27
- uses : actions/checkout@v3
27
+ uses : actions/checkout@v4
28
28
- name : Setup
29
29
uses : ./.github/actions/setup
30
30
with :
44
44
- ' 20'
45
45
steps :
46
46
- name : Checkout
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v4
48
48
- name : Setup
49
49
uses : ./.github/actions/setup
50
50
with :
75
75
os_name : Linux
76
76
steps :
77
77
- name : Setup Node.js
78
- uses : actions/setup-node@v3
78
+ uses : actions/setup-node@v4
79
79
with :
80
80
node-version : ${{ matrix.node }}
81
81
- name : Download artifact
84
84
name : ${{ needs.build.outputs.artifact_name }}
85
85
path : .
86
86
- name : Find packages
87
- uses : tj-actions/glob@v16
87
+ uses : tj-actions/glob@v17
88
88
id : packages
89
89
with :
90
90
files : ' *.tgz'
@@ -129,7 +129,7 @@ jobs:
129
129
- ' 20'
130
130
steps :
131
131
- name : Checkout
132
- uses : actions/checkout@v3
132
+ uses : actions/checkout@v4
133
133
- name : Setup
134
134
uses : ./.github/actions/setup
135
135
with :
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ jobs:
14
14
timeout-minutes : 30
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
with :
19
19
ref : ${{ github.head_ref }}
20
20
token : ${{ secrets.GH_TOKEN }}
21
21
- name : Import GPG key
22
- uses : crazy-max/ghaction-import-gpg@v5
22
+ uses : crazy-max/ghaction-import-gpg@v6
23
23
with :
24
24
git_user_signingkey : true
25
25
git_commit_gpgsign : true
34
34
- name : Format
35
35
run : npm run format
36
36
- name : Commit
37
- uses : stefanzweifel/git-auto-commit-action@v4
37
+ uses : stefanzweifel/git-auto-commit-action@v5
38
38
if : always()
39
39
with :
40
40
commit_message : ' ci: Format code'
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ jobs:
14
14
timeout-minutes : 30
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
with :
19
19
ref : ${{ github.head_ref }}
20
20
token : ${{ secrets.GH_TOKEN }}
21
21
- name : Import GPG key
22
- uses : crazy-max/ghaction-import-gpg@v5
22
+ uses : crazy-max/ghaction-import-gpg@v6
23
23
with :
24
24
git_user_signingkey : true
25
25
git_commit_gpgsign : true
36
36
env :
37
37
NODE_AUTH_TOKEN : ${{ secrets.GH_TOKEN }}
38
38
- name : Commit
39
- uses : stefanzweifel/git-auto-commit-action@v4
39
+ uses : stefanzweifel/git-auto-commit-action@v5
40
40
with :
41
41
commit_message : ' ci: Generate code'
42
42
commit_user_name : ${{ secrets.GIT_USER_NAME }}
Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ jobs:
39
39
needs : repository
40
40
steps :
41
41
- name : Checkout
42
- uses : actions/checkout@v3
42
+ uses : actions/checkout@v4
43
43
with :
44
44
fetch-depth : 0
45
45
token : ${{ secrets.GH_TOKEN }}
46
46
- name : Import GPG key
47
- uses : crazy-max/ghaction-import-gpg@v5
47
+ uses : crazy-max/ghaction-import-gpg@v6
48
48
with :
49
49
git_user_signingkey : true
50
50
git_commit_gpgsign : true
68
68
env :
69
69
ORIGIN : https://github.com/seamapi/${{ github.event.inputs.repo }}.git
70
70
- name : Commit
71
- uses : stefanzweifel/git-auto-commit-action@v4
71
+ uses : stefanzweifel/git-auto-commit-action@v5
72
72
with :
73
73
branch : main
74
74
skip_fetch : true
Original file line number Diff line number Diff line change 21
21
needs : build
22
22
steps :
23
23
- name : Checkout
24
- uses : actions/checkout@v3
24
+ uses : actions/checkout@v4
25
25
with :
26
26
fetch-depth : 0
27
27
- name : Download artifact
Original file line number Diff line number Diff line change 22
22
new_release_version : ${{ steps.release.outputs.new_release_version }}
23
23
steps :
24
24
- name : Checkout
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
with :
27
27
fetch-depth : 0
28
28
- name : Semantic release
38
38
if : ${{ needs.semantic.outputs.new_release_published == 'true' }}
39
39
steps :
40
40
- name : Checkout
41
- uses : actions/checkout@v3
41
+ uses : actions/checkout@v4
42
42
with :
43
43
fetch-depth : 1
44
44
- name : Release version ${{ steps.release.outputs.new_release_version }} on ${{ github.ref_name }}
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
timeout-minutes : 30
18
18
steps :
19
19
- name : Checkout
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
with :
22
22
token : ${{ secrets.GH_TOKEN }}
23
23
- name : Import GPG key
24
- uses : crazy-max/ghaction-import-gpg@v5
24
+ uses : crazy-max/ghaction-import-gpg@v6
25
25
with :
26
26
git_user_signingkey : true
27
27
git_commit_gpgsign : true
You can’t perform that action at this time.
0 commit comments