harden-runner/action.yml
2022-01-18 15:34:13 +05:30

23 lines
No EOL
705 B
YAML

name: 'Harden Runner'
description: 'GitHub Actions Runtime Security'
inputs:
allowed-endpoints:
description: 'Only these endpoints will be allowed if egress-policy is set to block'
required: false
default: ''
egress-policy:
description: 'Policy for outbound traffic, can be either audit or block'
required: false
default: 'block'
expected_checksum:
description: 'Expected sha256 checksum of latest agent.tar.gz file'
default: "a5f466fc5c8a9b809afd421e0f32903da98908feab5a245c734d3775e2e10032"
required: true
branding:
icon: 'check-square'
color: 'green'
runs:
using: 'node12'
pre: 'dist/pre/index.js'
main: 'dist/index.js'
post: 'dist/post/index.js'