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: 2 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions: {}

env:
NODE_ACTIVE_LTS: "22" # see https://nodejs.org/en/about/releases/
REPORTS_DIR: "CI_reports"
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:
default: false
required: false

permissions: write-all
permissions: {}

env:
REPORTS_DIR: CI_reports
Expand All @@ -45,6 +45,8 @@ jobs:
version_plain: ${{ steps.bump.outputs.version_plain }}
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write # needed for git push
steps:
- name: Checkout code
# see https://github.com/actions/checkout
Expand Down Expand Up @@ -85,6 +87,9 @@ jobs:
name: publish package
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
id-token: write # Enables provenance signing via OIDC
packages: write # Allows writing to organization packages
env:
PACKAGE_RELEASE_TAG: ${{ github.event.inputs.prerelease == 'true' && 'unstable-prerelease' || 'latest' }}
steps:
Expand Down Expand Up @@ -161,6 +166,8 @@ jobs:
name: publish GitHub
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write # create a release
env:
ASSETS_DIR: release_assets
steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cyclonedx/cyclonedx-library",
"version": "8.0.1-alpha.0",
"version": "8.0.1-alpha.1",
"description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
"license": "Apache-2.0",
"keywords": [
Expand Down