chore(ci): switch to npm trusted publishing with OIDC#106
Merged
kadel merged 1 commit intoredhat-developer:mainfrom Apr 28, 2026
Merged
chore(ci): switch to npm trusted publishing with OIDC#106kadel merged 1 commit intoredhat-developer:mainfrom
kadel merged 1 commit intoredhat-developer:mainfrom
Conversation
Replace long-lived NPM_TOKEN authentication with OIDC-based trusted publishing for improved supply chain security.
|
davidfestal
approved these changes
Apr 28, 2026
Member
|
/lgtm |
Member
Author
|
no need to wait for e2e, this is ci/cd only change, has no effect on codebase |
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.



Summary
NPM_TOKENsecret authentication with OIDC-basednpm Trusted Publishing
for improved supply chain security.
id-token: writepermission to enable GitHub Actions OIDC token generation.yarn npm publishtonpm publishas the npm CLI hasnative OIDC support, while Yarn Berry's support
has known issues.
Why
npm Trusted Publishing eliminates the need for storing and rotating long-lived
npm access tokens (
NPM_TOKEN) in CI. Instead, it uses short-lived,workflow-specific OIDC credentials that cannot be exfiltrated or reused.
Provenance attestations are also generated automatically.
See: https://docs.npmjs.com/trusted-publishers/
Notes
@red-hat-developer-hub/cli.NPM_TOKENsecret can be removed from the repository settings afterthis change is verified.
Test plan
publish.yamlviaworkflow_dispatchand verify successfulpublish to npm with OIDC authentication.