ci/cd: fix IPv6 timeout with force-ipv4
action
#522
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: checks.security.dependencies | |
on: | |
push: | |
pull_request: | |
paths: [ '/package.json', '/package-lock.json' ] # Allow PRs to be green if they do not introduce dependency change | |
schedule: | |
- cron: '0 0 * * 0' # at 00:00 on every Sunday | |
jobs: | |
npm-audit: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
name: Setup node | |
uses: ./.github/actions/setup-node | |
- | |
name: NPM audit | |
run: npm audit --omit=dev |