From 535c3f1c3e3aa12d92e9662cae26a95a661dd93e Mon Sep 17 00:00:00 2001 From: Adrian Clay Lake Date: Mon, 2 Dec 2024 12:57:26 +0000 Subject: [PATCH] fix(Test-Rock.yaml): bad default values --- .github/workflows/Test-Rock.yaml | 12 ++++++------ .github/workflows/_Test-OCI-Factory.yaml | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/Test-Rock.yaml b/.github/workflows/Test-Rock.yaml index 844a9d99..20b2d2f0 100644 --- a/.github/workflows/Test-Rock.yaml +++ b/.github/workflows/Test-Rock.yaml @@ -7,7 +7,7 @@ on: # Workflow Parameters oci-archive-name: description: "OCI image artifact name." - required: true + required: 'true' type: string # Individual Test Parameters: @@ -15,25 +15,25 @@ on: ## OCI Compliance Test test-oci-compliance: description: "Enable compliance test." - default: true + default: 'true' type: boolean ## Rock black-box Test test-black-box: description: "Enable rock black-box test." - default: true + default: 'true' type: boolean ## Image Efficiency Test test-efficiency: description: "Enable image efficiency test." - default: true + default: 'true' type: boolean ## Vulnerability Test test-vulnerabilities: description: "Enable vulnerability test." - default: true + default: 'true' type: boolean trivyignore-path: description: "Optional path to .trivyignore file." @@ -42,7 +42,7 @@ on: ## Malware Test test-malware: description: "Enable malware test." - default: true + default: 'true' type: boolean env: diff --git a/.github/workflows/_Test-OCI-Factory.yaml b/.github/workflows/_Test-OCI-Factory.yaml index 8b01fba2..1e221dc8 100644 --- a/.github/workflows/_Test-OCI-Factory.yaml +++ b/.github/workflows/_Test-OCI-Factory.yaml @@ -112,10 +112,10 @@ jobs: with: oci-archive-name: "mock-rock" test-black-box: true - test-efficiency: true - test-malware: true - test-oci-compliance: true - test-vulnerabilities: true + test-efficiency: false + test-malware: false + test-oci-compliance: false + test-vulnerabilities: false # test-rock: # uses: ./.github/workflows/Test-Rock.yaml