Update dependencies to address CVE-2024-7254 (#240) #359
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: Node.js Bindings | |
on: | |
push: | |
branches: [ main ] | |
tags: [ v** ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
ci_checks: | |
name: Build checks | |
uses: ./.github/workflows/ci-checks.yml | |
build: | |
name: Build Node.js bindings | |
needs: ci_checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache build dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: makefile-deps | |
with: | |
path: ~/.cache/fabric-protos | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('Makefile') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('Makefile') }} | |
${{ runner.os }}-${{ env.cache-name }}- | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: bindings/node/package-lock.json | |
registry-url: https://registry.npmjs.org/ | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: stable | |
cache: false | |
- name: Run make | |
run: make nodebindings | |
- run: npm version ${BINDING_VERSION}-dev.${GITHUB_RUN_ID}.${GITHUB_RUN_ATTEMPT} | |
name: npm version | |
if: needs.ci_checks.outputs.publish_release != 'true' | |
working-directory: bindings/node | |
env: | |
BINDING_VERSION: ${{ needs.ci_checks.outputs.binding_version }} | |
GITHUB_RUN_ID: ${{ github.run_id }} | |
GITHUB_RUN_ATTEMPT: ${{ github.run_attempt }} | |
- run: | | |
[ "${NPM_CONFIG_DRY_RUN}" == "true" ] && echo "Dry run" | |
npm publish --access public --tag ${NPM_PUBLISH_TAG} | |
name: npm publish | |
working-directory: bindings/node | |
env: | |
NPM_CONFIG_DRY_RUN: ${{ ( github.ref == 'refs/heads/main' || needs.ci_checks.outputs.publish_release == 'true' ) && 'false' || 'true' }} | |
NPM_PUBLISH_TAG: ${{ ( needs.ci_checks.outputs.publish_release == 'true' ) && 'next' || 'next-unstable' }} | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |