-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from step-security/rcbranch
Release 1.4.0
- Loading branch information
Showing
11 changed files
with
2,046 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,4 +101,7 @@ typings/ | |
.dynamodb/ | ||
|
||
# TernJS port file | ||
.tern-port | ||
.tern-port | ||
|
||
# vscode files | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Oops, something went wrong.