Skip to content

vuln: add recent vulnerabilities (#1069) #4

vuln: add recent vulnerabilities (#1069)

vuln: add recent vulnerabilities (#1069) #4

name: "Update core index.json"
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'vuln/core/*.json'
- '!vuln/core/index.json'
permissions:
contents: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@cba0d00b1fc9a034e1e642ea0f1103c282990604 # v2.5.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
with:
node-version: 18
- name: Install deps
run: npm ci
- name: Update core index.json
run: |
npm run create-core-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 core index.json'
title: update core index.json
body: 'update core index.json. cc: @nodejs/security-wg'
assignees: ${{ github.actor }}
labels: security-wg-agenda
branch: core-index-updated
update-pull-request-title-and-body: true