Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,27 @@ inputs:
hide-policies:
required: false
description: Hide policies from the output altogether
policy-file:
required: false
description: |
Path to a local .rego policy file to evaluate.
Use a comma separated list to evaluate several files.
policy-dir:
required: false
description: |
Path to a directory of local .rego policy files to evaluate.
Use a comma separated list to evaluate several directories.
policy-bundle:
required: false
description: |
OCI reference of a policy bundle to evaluate.
Use a comma separated list to evaluate several bundles.
policy-config:
required: false
description: Path to a JSON file configuring policy enablement and inputs
only-policy:
required: false
description: Comma separated list of policies to evaluate

# filter flags
ignore-base:
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33984,7 +33984,7 @@ function requireSrc () {
}

async function main() {
const version = "v1.22.0";
const version = "v1.23.0";

const binaryName = getBinaryName();
const binaryPath = path.join(__dirname, "dist");
Expand Down
Loading