File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -10,27 +10,23 @@ jobs:
10
10
Build :
11
11
runs-on : ubuntu-latest
12
12
13
- strategy :
14
- matrix :
15
- node-version : [16.x]
16
-
17
13
steps :
18
14
- uses : actions/checkout@v3
19
15
with :
20
16
ref : ${{ github.head_ref }}
21
17
fetch-depth : 1
22
18
23
19
- name : Use Node.js (dependency)
24
- uses : actions/setup-node@v1
20
+ uses : actions/setup-node@v3
25
21
with :
26
- node-version : ${{ matrix.node-version }}
22
+ node-version : 16
27
23
28
24
- name : Completion Table
29
25
run : node ./.github/workflows/updateCompletionTable.js;
30
26
31
27
- name : Check for modified files
32
28
id : git-check
33
- run : echo ::set-output name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)
29
+ run : echo name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi) >> $GITHUB_OUTPUT
34
30
35
31
- name : Push
36
32
if : steps.git-check.outputs.modified == 'true'
You can’t perform that action at this time.
0 commit comments