chore(action): update actions/setup-node action to v4.2.0 #277
This file contains 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
name: Release | |
on: | |
push: | |
branches: | |
- main | |
- alpha | |
permissions: | |
contents: read | |
id-token: write # to enable use of OIDC for npm provenance | |
jobs: | |
test: | |
uses: ./.github/workflows/test.yml | |
permissions: | |
contents: read | |
pull-requests: read | |
secrets: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
release: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.github.com:443 | |
github.com:22 | |
github.com:443 | |
registry.npmjs.org:443 | |
*.sigstore.dev:443 | |
- name: Checkout project | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Use Node.js LTS | |
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 | |
with: | |
node-version: "lts/*" | |
cache: npm | |
- name: Install packages | |
run: npm ci | |
- name: Audit npm signatures | |
run: npm audit signatures | |
- name: Run Semantic Release | |
run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |