Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The update to `actions/upload-artifact` v4 introduces a breaking change: > Uploading to the same named Artifact multiple times. > > Due to how Artifacts are created in this new version, it is no longer > possible to upload to the same named Artifact multiple times. > You must either split the uploads into multiple Artifacts with different names, > or only upload once. > Otherwise you will encounter an error. This is good security improvement. This commit fixes the build failures we've seen by: - Uploading x86_64 and ARM64 SBOMs as individual artifacts - When creating the GitHub release, download all the artifacts produced during the run. The pre-existing code was already looking for the specific SBOM files Signed-off-by: Flavio Castelli <[email protected]>
- Loading branch information