mirror of
https://github.com/step-security/harden-runner.git
synced 2026-06-08 01:47:19 +00:00
23 lines
No EOL
705 B
YAML
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' |