Skip to content
Open
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
28 changes: 28 additions & 0 deletions .github/.sbomber-manifest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
clients:
sbom:
service_url: https://sbom-request.canonical.com
department: charm_engineering
email: tony.meyer@canonical.com
team: charm_tech
secscan: {}

artifacts:
- name: ubuntu
type: charm
channel: '2.x/stable'
base: ubuntu@18.04

- name: ubuntu
type: charm
channel: '2.x/stable'
base: ubuntu@20.04

- name: ubuntu
type: charm
channel: '2.x/stable'
base: ubuntu@22.04

- name: ubuntu
type: charm
channel: '2.x/stable'
base: ubuntu@24.04
25 changes: 25 additions & 0 deletions .github/workflows/sbom-secscan.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: SBOM and secscan

on:
workflow_dispatch:
schedule:
# Run on the 10th of April and October, aligned to the Canonical release cycle.
- cron: "0 0 10 4,10 *"

permissions: {}

jobs:
scan:
name: SBOM and secscan
runs-on: [self-hosted, self-hosted-linux-amd64-jammy-private-endpoint-medium]
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false

- name: sbomber
uses: canonical/sbomber/.github/actions/run@cf7a76e810497ec932e8285b2c9d6b373d225e79 # main -- the sbomber-ref input below should match
with:
manifest: ${{ github.workspace }}/.github/.sbomber-manifest.yaml
artifact-name: secscan-report-upload
sbomber-ref: cf7a76e810497ec932e8285b2c9d6b373d225e79 # should match the ref in 'uses' above
Loading