Skip to content

Commit

Permalink
fix(Test-Rock.yaml): bad default values
Browse files Browse the repository at this point in the history
  • Loading branch information
clay-lake committed Dec 2, 2024
1 parent 659ff7e commit 535c3f1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/Test-Rock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@ on:
# Workflow Parameters
oci-archive-name:
description: "OCI image artifact name."
required: true
required: 'true'
type: string

# Individual Test Parameters:

## 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."
Expand All @@ -42,7 +42,7 @@ on:
## Malware Test
test-malware:
description: "Enable malware test."
default: true
default: 'true'
type: boolean

env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_Test-OCI-Factory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 535c3f1

Please sign in to comment.