Downloads SBOMs from GitHub, Mend, and Wiz. Uploads to S3 and ClickHouse.
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| github-token | GitHub Token | false | true | |
| repository | Repository to download SBOM from | false | false |
github-tokencan be the built-in${{ secrets.GITHUB_TOKEN }}or a token generated by a GitHub App. If you use a GitHub App, see Creating a GitHub App.
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| mend-email | Mend user email address | false | true | |
| mend-org-uuid | Mend organization UUID | false | true | |
| mend-user-key | Mend user key | false | true | |
| mend-base-url | Mend base URL | https://api-saas.mend.io | false | false |
| mend-product-uuid | Mend product UUID for product-scoped SBOM | false | true | |
| mend-project-uuid | Mend project UUID for project-scoped SBOM | false | true | |
| mend-org-scope-uuid | Mend organization UUID for organization-scoped SBOM | false | true | |
| mend-project-uuids | Comma-separated list of specific project UUIDs to include | false | true | |
| mend-max-wait-time | Maximum time to wait for Mend report generation (seconds) | 1800 | false | false |
| mend-poll-interval | Polling interval for Mend report status (seconds) | 30 | false | false |
- The
mend-org-scope-uuidis used for organization-scoped SBOMs, which is different from themend-org-uuidused for authentication. - ClickBOM only supports downloading SBOMs from Mend in the CycloneDX v1.5 format. If you need to convert the SBOM to SPDX, you can use the
sbom-formatinput. (Support for SPDX coming soon)
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| wiz-auth-endpoint | Wiz Auth Endpoint | false | true | |
| wiz-api-endpoint | Wiz API Endpoint | false | true | |
| wiz-client-id | Wiz Client ID | false | true | |
| wiz-client-secret | Wiz Client Secret | false | true | |
| wiz-report-id | Wiz Report ID | false | true |
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| aws-access-key-id | AWS Access Key ID. Deprecated — prefer OIDC (see examples below). | false | true | |
| aws-secret-access-key | AWS Secret Access Key. Deprecated — prefer OIDC (see examples below). | false | true | |
| aws-region | AWS Region. Deprecated — prefer OIDC (set via configure-aws-credentials). | us-east-1 | false | false |
| s3-bucket | S3 Bucket Name | false | false | |
| s3-key | S3 Key Prefix | sbom.json | false | false |
- It is recommended that an S3 bucket be created for the purposes of ClickBOM.
- The
aws-*inputs are kept for backward compatibility with the bash version of this action. The recommended path is to useaws-actions/configure-aws-credentials@v4with GitHub OIDC; that action exportsAWS_ACCESS_KEY_ID/AWS_SECRET_ACCESS_KEY/AWS_DEFAULT_REGIONas job-level env vars which the AWS SDK picks up automatically — no need to pass them as inputs.
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| clickhouse-url | ClickHouse URL | false | true | |
| clickhouse-database | ClickHouse Database Name | default | false | false |
| clickhouse-username | ClickHouse Username | default | false | false |
| clickhouse-password | ClickHouse Password | (empty) | false | true |
| truncate-table | Truncate table before insert | false | false | false |
- At the moment, ClickHouse ingestion is only supported over HTTP.
| Name | Description | Default | Required | Sensitive |
|---|---|---|---|---|
| sbom-source | Source of SBOM (github, mend, wiz) | github | false | false |
| sbom-format | SBOM format (spdxjson or cyclonedx) | cyclonedx | false | false |
| merge | Merge SBOMs stored in S3 | false | false | false |
| include | Comma-separated list of filenames or patterns to include when merging | (empty) | false | false |
| exclude | Comma-separated list of filenames or patterns to exclude when merging | (empty) | false | false |
| debug | Enable debug logging | false | false | false |
sbom-formatspecifies the format you want the final SBOM to be in. For example, GitHub only supports SPDX, settings this input tocyclonedxwill convert the SBOM to CycloneDX format.includeandexcludeare only used whenmergeis set totrue. They allow you to filter which files from the S3 bucket should be included in the merge operation.- Both
includeandexcludesupport exact filename matching and wildcard patterns (e.g.,file*.json,*-prod.json). - If
includeis specified, only files matching the include patterns will be processed. - If
excludeis specified, files matching the exclude patterns will be skipped. excludeis applied afterinclude, so a file that matches both an include and exclude pattern will be excluded.
Simple example of downloading the SBOM from the same repository and uploading it to S3. Converts the SBOM to CycloneDX format.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ secrets.GITHUB_TOKEN }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: clickbom.jsonrepository: ${{ github.repository_owner }}/${{ github.repository }}Downloads the SBOM from the same repository and uploads it to S3. Converts the SBOM to CycloneDX format. Also uploads the SBOM to ClickHouse.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ secrets.GITHUB_TOKEN }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: clickbom.jsonrepository: ${{ github.repository_owner }}/${{ github.repository }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}Downloads the SBOM from the same repository and uploads it to S3. Keeps the SBOM in SPDX format. Authenticates using a GitHub App. See Creating a GitHub App.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Generate Tokenid: generate-tokenuses: actions/create-github-app-token@v2with:
app-id: ${{ secrets.CLICKBOM_AUTH_APP_ID }}private-key: ${{ secrets.CLICKBOM_AUTH_PRIVATE_KEY }}
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ steps.generate-token.outputs.token }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}sbom-format: spdxjsons3-bucket: my-sbom-buckets3-key: clickbom.jsonrepository: ${{ github.repository_owner }}/${{ github.repository }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}Downloads SBOMs from multiple repositories (must have GitHub App installed), Converts SBOMs to CycloneDX format, and uploads them to S3 and ClickHouse.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
strategy:
fail-fast: falsematrix:
repository: ["repository-one","repository-two","repository-three"]name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Generate Tokenid: generate-tokenuses: actions/create-github-app-token@v2with:
app-id: ${{ secrets.CLICKBOM_AUTH_APP_ID }}private-key: ${{ secrets.CLICKBOM_AUTH_PRIVATE_KEY }}owner: ${{ github.repository_owner }}repositories: ${{ matrix.repository }}
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ steps.generate-token.outputs.token }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: ${{ matrix.repository }}.jsonrepository: ${{ github.repository_owner }}/${{ matrix.repository }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}This example adds to the previous one by merging SBOMs stored in S3. It downloads the SBOMs from S3, merges them, and uploads the merged SBOM back to S3 and ClickHouse. Only the CycloneDX format is supported for merging.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
strategy:
fail-fast: falsematrix:
repository: ["repository-one","repository-two","repository-three"]name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Generate Tokenid: generate-tokenuses: actions/create-github-app-token@v2with:
app-id: ${{ secrets.CLICKBOM_AUTH_APP_ID }}private-key: ${{ secrets.CLICKBOM_AUTH_PRIVATE_KEY }}owner: ${{ github.repository_owner }}repositories: ${{ matrix.repository }}
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ steps.generate-token.outputs.token }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: ${{ matrix.repository }}.jsonrepository: ${{ github.repository_owner }}/${{ matrix.repository }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}clickbom_merge:
needs: clickbomname: ClickBOM Mergeruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Generate Tokenid: generate-tokenuses: actions/create-github-app-token@v2with:
app-id: ${{ secrets.CLICKBOM_AUTH_APP_ID }}private-key: ${{ secrets.CLICKBOM_AUTH_PRIVATE_KEY }}
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOMuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ steps.generate-token.outputs.token }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: clickbom.jsonclickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}merge: trueThis example shows how to use the include and exclude filters when merging SBOMs. This is useful when you want to merge only specific files from your S3 bucket.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom_merge:
name: ClickBOM Merge with Filtersruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Generate Tokenid: generate-tokenuses: actions/create-github-app-token@v2with:
app-id: ${{ secrets.CLICKBOM_AUTH_APP_ID }}private-key: ${{ secrets.CLICKBOM_AUTH_PRIVATE_KEY }}
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Merge Production SBOMs Onlyuses: ClickHouse/ClickBom@v1.0.10with:
github-token: ${{ steps.generate-token.outputs.token }}aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: production-merged.jsonclickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}merge: trueinclude: "*-prod.json,production-*.json"exclude: "*-test.json,*-dev.json"In this example:
include: "*-prod.json,production-*.json"will only process files that match these patternsexclude: "*-test.json,*-dev.json"will skip any files that match these patterns- The result is that only production-related SBOMs will be merged, excluding test and development SBOMs
If you want to download an SBOM from Mend, you can use the following example. This example assumes you have the necessary Mend credentials set up in your GitHub Secrets.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOM from Menduses: ClickHouse/ClickBom@v1.0.10with:
aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: clickbom.jsonsbom-source: mendmend-email: ${{ secrets.CLICKBOM_MEND_EMAIL }}mend-org-uuid: ${{ secrets.CLICKBOM_MEND_ORG_UUID }}mend-user-key: ${{ secrets.CLICKBOM_MEND_USER_KEY }}mend-product-uuid: ${{ secrets.CLICKBOM_MEND_PRODUCT_UUID }}mend-project-uuid: ${{ secrets.CLICKBOM_MEND_PROJECT_UUID }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}If you want to download an SBOM from Wiz, you can use the following example. This example assumes you have the necessary Wiz credentials set up in your GitHub Secrets.
name: Upload SBOMon:
push:
branches:
- mainjobs:
clickbom:
name: ClickBOMruns-on: ubuntu-latestpermissions:
id-token: writecontents: readsteps:
- name: Checkout repositoryuses: actions/checkout@v4
- name: Configure AWS Credentialsid: aws-credsuses: aws-actions/configure-aws-credentials@v4with:
role-to-assume: arn:aws:iam::012345678912:role/GitHubOIDCRolerole-session-name: clickbom-sessionaws-region: us-east-1
- name: Upload SBOM from Wizuses: ClickHouse/ClickBom@v1.0.10with:
aws-access-key-id: ${{ steps.aws-creds.outputs.aws-access-key-id }}aws-secret-access-key: ${{ steps.aws-creds.outputs.aws-secret-access-key }}s3-bucket: my-sbom-buckets3-key: clickbom.jsonsbom-source: wizwiz-auth-endpoint: ${{ secrets.CLICKBOM_WIZ_AUTH_ENDPOINT }}wiz-api-endpoint: ${{ secrets.CLICKBOM_WIZ_API_ENDPOINT }}wiz-client-id: ${{ secrets.CLICKBOM_WIZ_CLIENT_ID }}wiz-client-secret: ${{ secrets.CLICKBOM_WIZ_CLIENT_SECRET }}wiz-report-id: ${{ secrets.CLICKBOM_WIZ_REPORT_ID }}clickhouse-url: ${{ secrets.CLICKHOUSE_URL }}clickhouse-database: ${{ secrets.CLICKHOUSE_DATABASE }}clickhouse-username: ${{ secrets.CLICKHOUSE_USERNAME }}clickhouse-password: ${{ secrets.CLICKHOUSE_PASSWORD }}- Follow the instructions here to create a GitHub App.
- Make sure to give the app
Read accesstoContentsandMetadata. - Install the app on the repositories you want to use it with.
- Generate a private key for the app and save it somewhere secure, i.e. GitHub Secrets.