feat: add vex generator (#1537) #1
This file contains hidden or 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: "Update deps index.json" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'vuln/deps/*.json' | |
| - '!vuln/deps/index.json' | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
| with: | |
| egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
| - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install deps | |
| run: npm ci | |
| - name: Update deps index.json | |
| run: | | |
| npm run create-deps-index | |
| - name: Create Pull Request | |
| uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commit-message: 'vuln: update deps index.json' | |
| title: update deps index.json | |
| body: 'update deps index.json. cc: @nodejs/security-wg' | |
| assignees: ${{ github.actor }} | |
| labels: security-wg-agenda | |
| branch: deps-index-updated | |
| update-pull-request-title-and-body: true |