-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create SBOM #1292
Create SBOM #1292
Conversation
Also move runtime deps to dependencies to try to create a better sbom
Docker image is tagged in node-build action
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. I think there are some packages we could talk about moving, but I think in the interest of getting this started it's okay to include them as is for now.
For reference, here's what an app's package.json
would look like if you did ember new
, which might be instructive for us. https://github.com/ember-cli/ember-new-output/blob/v5.12.0/package.json
This PR has the following changes:
create_sbom
in package.json scripts.dependencies
in package.json and moved "runtime" dependencies to this section. Please review these to ensure I have not missed any from devDependencies or have a dependency that is not a runtime dependency.eclipse-pass/main/.github/actions/node-build@main
action instead of thebuild-pass-ui
action.build-pass-ui
has been removed.latest
tag from docker images created by github action workflows. This is to be more consistent with other repo action snapshot/release workflows.The way I have things configured now, an SBOM will be created and copied into the corresponding Docker image whenever a PR is merged and when PASS is released.
Note this PR should be merged after the main PR is merged: eclipse-pass/main#1087