feat: compute and upload SBOMs for various generator v3 flavors#12677
Merged
daniel-kmiecik merged 1 commit into3.0.0from Feb 3, 2026
Merged
feat: compute and upload SBOMs for various generator v3 flavors#12677daniel-kmiecik merged 1 commit into3.0.0from
daniel-kmiecik merged 1 commit into3.0.0from
Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the version to 3.0.0-SNAPSHOT and enhances Docker release workflows by adding automated SBOM (Software Bill of Materials) generation and attachment capabilities for improved supply chain security.
Changes:
- Added SBOM generation using
anchore/sbom-actionfor all Docker images in both master and 3.0 release workflows - Integrated
cosignto attach generated SBOMs to Docker images - Removed unused
branchesinput fromworkflow_dispatchtrigger in master workflow
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.github/workflows/docker-release-master.yml |
Added SBOM generation and attachment steps for generator and CLI images, removed unused branches configuration |
.github/workflows/docker-release-3.0.yml |
Added SBOM generation and attachment steps for all v3 Docker images (generator, generator-root, CLI, and minimal variants) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
knieczyszczak
approved these changes
Jan 29, 2026
MichakrawSB
approved these changes
Jan 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR checklist
./bin/to update Petstore sample so that CIs can verify the change. (For instance, only need to run./bin/{LANG}-petstore.shand./bin/security/{LANG}-petstore.shif updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates). Windows batch files can be found in.\bin\windows\.3.0.0branch for changes related to OpenAPI spec 3.0. Default:master.Description of the PR
This pull request enhances the Docker release workflows by adding automated generation and attachment of Software Bill of Materials (SBOM) files to Docker images, improving supply chain security and transparency. It introduces the use of the
anchore/sbom-actionfor SBOM creation andcosignfor attaching SBOMs to images in both the master and 3.0 release workflows.SBOM Generation and Attachment Enhancements:
anchore/sbom-actionGitHub Action in both.github/workflows/docker-release-master.ymland.github/workflows/docker-release-3.0.yml. [1] [2]cosignto attach the generated SBOMs to the respective Docker images, further automating the supply chain security process. [1] [2]Workflow Configuration Update:
branches: [ "master" ]input from theworkflow_dispatchtrigger in.github/workflows/docker-release-master.ymlfor cleaner configuration.