diff --git a/action.yaml b/action.yaml index c132c21..631336c 100644 --- a/action.yaml +++ b/action.yaml @@ -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: diff --git a/index.js b/index.js index 8dfedd2..4d57f50 100644 --- a/index.js +++ b/index.js @@ -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");