File tree Expand file tree Collapse file tree 5 files changed +420
-155
lines changed Expand file tree Collapse file tree 5 files changed +420
-155
lines changed Original file line number Diff line number Diff line change
1
+ name : Release GitHub Actions
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ tag :
7
+ description : " Tag for the release"
8
+ required : true
9
+
10
+ permissions :
11
+ contents : read
12
+
13
+ jobs :
14
+ release :
15
+ permissions :
16
+ actions : read
17
+ id-token : write
18
+ contents : write
19
+ uses : step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
20
+ with :
21
+ tag : " ${{ github.event.inputs.tag }}"
Original file line number Diff line number Diff line change
1
+ name : NPM Audit Fix Run
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ force :
7
+ description : " Use --force flag for npm audit fix?"
8
+ required : true
9
+ type : boolean
10
+ base_branch :
11
+ description : " Specify a base branch"
12
+ required : false
13
+ default : " main"
14
+
15
+ jobs :
16
+ audit-fix :
17
+ uses : step-security/reusable-workflows/.github/workflows/npm_audit_fix.yml@v1
18
+ with :
19
+ force : ${{ inputs.force }}
20
+ base_branch : ${{ inputs.base_branch }}
21
+
22
+ permissions :
23
+ contents : write
24
+ pull-requests : write
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ inputs:
11
11
required : false
12
12
default : ' https://github.com/mikefarah/yq/releases/download/{version}/yq_{platform}_{arch}'
13
13
runs :
14
- using : ' node16 '
14
+ using : ' node20 '
15
15
main : ' dist/index.js'
16
16
icon : book-open
17
17
color : ' #FFFF00'
You can’t perform that action at this time.
0 commit comments