Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/auto-version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '24'

- name: Install project dependencies
run: npm ci
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/release-with-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '24'
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '24'

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -487,7 +487,7 @@ jobs:
- name: Setup Node.js for publishing
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '24'
registry-url: 'https://registry.npmjs.org'

- name: Create GitHub Release
Expand Down Expand Up @@ -521,12 +521,11 @@ jobs:
npx tsc --version
npx tsc --listFiles

echo "Publishing to NPM with provenance and SBOM metadata"
npm publish --provenance
echo "Publishing to NPM with provenance (using OIDC Trusted Publisher)"
npm publish --provenance --access public

echo "NPM publish complete"
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# No NODE_AUTH_TOKEN needed - using npm Trusted Publishers (OIDC)

- name: Release complete
run: |
Expand Down