Skip to content

Commit bdb12b6

Browse files
Merge pull request #98 from step-security/rcbranch
Release 1.4.0
2 parents 2cfbfd2 + e361e1d commit bdb12b6

File tree

11 files changed

+2046
-145
lines changed

11 files changed

+2046
-145
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,7 @@ typings/
101101
.dynamodb/
102102

103103
# TernJS port file
104-
.tern-port
104+
.tern-port
105+
106+
# vscode files
107+
.vscode

action.yml

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
1-
name: 'Harden Runner'
2-
description: 'GitHub Actions Runtime Security'
1+
name: "Harden Runner"
2+
description: "Security monitoring for the GitHub-hosted runner"
33
inputs:
44
allowed-endpoints:
5-
description: 'Only these endpoints will be allowed if egress-policy is set to block'
5+
description: "Only these endpoints will be allowed if egress-policy is set to block"
66
required: false
7-
default: ''
7+
default: ""
88
egress-policy:
9-
description: 'Policy for outbound traffic, can be either audit or block'
9+
description: "Policy for outbound traffic, can be either audit or block"
1010
required: false
11-
default: 'block'
11+
default: "block"
12+
token:
13+
description: "Used to avoid github rate limiting"
14+
default: ${{ github.token }}
15+
disable-telemetry:
16+
description: "Disable sending telemetry to StepSecurity API, can be set to true or false. This can only be set to true when egress-policy is set to block"
17+
required: false
18+
default: "false"
1219
branding:
13-
icon: 'check-square'
14-
color: 'green'
20+
icon: "check-square"
21+
color: "green"
1522
runs:
16-
using: 'node12'
17-
pre: 'dist/pre/index.js'
18-
main: 'dist/index.js'
19-
post: 'dist/post/index.js'
23+
using: "node16"
24+
pre: "dist/pre/index.js"
25+
main: "dist/index.js"
26+
post: "dist/post/index.js"

0 commit comments

Comments
 (0)