Skip to content

Commit

Permalink
Merge pull request #98 from step-security/rcbranch
Browse files Browse the repository at this point in the history
Release 1.4.0
  • Loading branch information
varunsh-coder authored Feb 13, 2022
2 parents 2cfbfd2 + e361e1d commit bdb12b6
Show file tree
Hide file tree
Showing 11 changed files with 2,046 additions and 145 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,7 @@ typings/
.dynamodb/

# TernJS port file
.tern-port
.tern-port

# vscode files
.vscode
31 changes: 19 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
name: 'Harden Runner'
description: 'GitHub Actions Runtime Security'
name: "Harden Runner"
description: "Security monitoring for the GitHub-hosted runner"
inputs:
allowed-endpoints:
description: 'Only these endpoints will be allowed if egress-policy is set to block'
description: "Only these endpoints will be allowed if egress-policy is set to block"
required: false
default: ''
default: ""
egress-policy:
description: 'Policy for outbound traffic, can be either audit or block'
description: "Policy for outbound traffic, can be either audit or block"
required: false
default: 'block'
default: "block"
token:
description: "Used to avoid github rate limiting"
default: ${{ github.token }}
disable-telemetry:
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"
required: false
default: "false"
branding:
icon: 'check-square'
color: 'green'
icon: "check-square"
color: "green"
runs:
using: 'node12'
pre: 'dist/pre/index.js'
main: 'dist/index.js'
post: 'dist/post/index.js'
using: "node16"
pre: "dist/pre/index.js"
main: "dist/index.js"
post: "dist/post/index.js"
Loading

0 comments on commit bdb12b6

Please sign in to comment.