Skip to content

Bump rollup from 3.29.1 to 3.29.2 (#1196) #44

Bump rollup from 3.29.1 to 3.29.2 (#1196)

Bump rollup from 3.29.1 to 3.29.2 (#1196) #44

Workflow file for this run

name: Audit
on:
pull_request:
paths:
- .github/workflows/audit-dev.yml
- package-lock.json
push:
branches:
- main
- main-v1
schedule:
- cron: "0 3 * * *"
workflow_dispatch: ~
permissions: read-all
jobs:
npm:
name: npm
runs-on: ubuntu-22.04
steps:
- name: Harden runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
actions-results-receiver-production.githubapp.com:443
api.github.com:443
artifactcache.actions.githubusercontent.com:443
ghcr.io:443
github.com:443
gitlab.com:443
nodejs.org:443
objects.githubusercontent.com:443
registry.npmjs.org:443
- name: Checkout repository
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Install Node.js
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
cache: npm
node-version-file: .nvmrc
- name: Install dependencies
run: npm clean-install
- name: Audit all npm dependencies
run: npm run audit