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
2 changes: 2 additions & 0 deletions .github/workflows/.test-bake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ on:
- 'v*'
paths:
- '.github/workflows/.test-bake.yml'
- '.github/workflows/bake.yml'
- '.github/workflows/verify.yml'
- 'test/**'
pull_request:
paths:
- '.github/workflows/.test-bake.yml'
- '.github/workflows/bake.yml'
- '.github/workflows/verify.yml'
- 'test/**'

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/.test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ on:
- 'v*'
paths:
- '.github/workflows/.test-build.yml'
- '.github/workflows/build.yml'
- '.github/workflows/verify.yml'
- 'test/**'
pull_request:
paths:
- '.github/workflows/.test-build.yml'
- '.github/workflows/build.yml'
- '.github/workflows/verify.yml'
- 'test/**'

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/bake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,10 @@ on:
required: false
default: false
sbom:
type: string
type: boolean
description: "Generate SBOM attestation for the build"
required: false
default: false
set:
type: string
description: "List of targets values to override (eg. targetpattern.key=value)"
Expand Down Expand Up @@ -176,7 +177,7 @@ jobs:
const inpFiles = Util.getInputList('files');
const inpOutput = core.getInput('output');
const inpPush = core.getBooleanInput('push');
const inpSbom = core.getInput('sbom');
const inpSbom = core.getBooleanInput('sbom');
const inpSet = Util.getInputList('set', {ignoreComma: true, quote: false});
const inpSign = core.getInput('sign');
const inpTarget = core.getInput('target');
Expand Down Expand Up @@ -220,7 +221,7 @@ jobs:
def = await bake.getDefinition({
files: inpFiles,
overrides: inpSet,
sbom: inpSbom,
sbom: inpSbom ? 'true' : 'false',
source: bakeSource,
targets: [inpTarget],
githubToken: inpGitHubToken
Expand Down Expand Up @@ -376,7 +377,7 @@ jobs:
const inpFiles = Util.getInputList('files');
const inpOutput = core.getInput('output');
const inpPush = core.getBooleanInput('push');
const inpSbom = core.getInput('sbom');
const inpSbom = core.getBooleanInput('sbom');
const inpSet = Util.getInputList('set', {ignoreComma: true, quote: false});
const inpTarget = core.getInput('target');
const inpMetaImages = core.getMultilineInput('meta-images');
Expand All @@ -400,7 +401,7 @@ jobs:
const def = await bake.getDefinition({
files: inpFiles,
overrides: inpSet,
sbom: inpSbom,
sbom: inpSbom ? 'true' : 'false',
source: bakeSource,
targets: [inpTarget],
githubToken: inpGitHubToken
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ on:
required: false
default: false
sbom:
type: string
type: boolean
description: "Generate SBOM attestation for the build"
required: false
default: false
shm-size:
type: string
description: "Size of /dev/shm (e.g., 2g)"
Expand Down
Loading
Loading