Dependency Audit Fix Run #13
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: NPM Audit Fix Run | |
on: | |
workflow_dispatch: | |
inputs: | |
force: | |
description: "Use --force flag for npm audit fix?" | |
required: true | |
type: boolean | |
base_branch: | |
description: "Specify a base branch" | |
required: false | |
default: "main" | |
use_private_packages: | |
description: "Use private packages?" | |
required: false | |
type: boolean | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: read | |
jobs: | |
audit-fix: | |
uses: step-security/reusable-workflows/.github/workflows/npm_audit_fix.yml@v1 | |
with: | |
force: ${{ inputs.force }} | |
base_branch: ${{ inputs.base_branch }} | |
use_private_packages: ${{ inputs.use_private_packages }} |