File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Update
2
+ run-name : Update deps list
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+
7
+ concurrency :
8
+ group : ${{ github.ref }}-${{ github.workflow }}
9
+ cancel-in-progress : true
10
+
11
+ jobs :
12
+ Setup :
13
+ name : Setup
14
+ runs-on : ubuntu-latest
15
+ permissions :
16
+ contents : write
17
+ pull-requests : write
18
+
19
+ steps :
20
+ - name : Checkout code
21
+
22
+
23
+ - name : Setup Node.js
24
+
25
+
26
+ with :
27
+ cache : npm
28
+ check-latest : true
29
+ node-version-file : .nvmrc
30
+
31
+ - name : Install dependencies
32
+ run : npm ci
33
+
34
+ - name : Set up Python
35
+ uses : actions/setup-python@v5
36
+
37
+ - name : Install github-dependents-info
38
+ run : pip install -U github-dependents-info
39
+
40
+ - name : Check gdi is installed
41
+ run : github-dependents-info -v
You can’t perform that action at this time.
0 commit comments