Thomas Boop d1aa255c7f
HTTP Client 2.2.3 Release (#1804)
* http-client 2.2.3

* fix audit

* Revert "fix audit"

724956ffa7d2369e0fcc7e0a4f0ae7f6fb2ff034

* update versions

* Revert "update versions"

139b3391a00f8d8a03a2bc782f40e7cefbe9354c

* exclude dev dependencies while we work on removing lerna
2024-08-22 10:13:36 -04:00

39 lines
630 B
YAML

name: toolkit-audit
on:
push:
branches:
- main
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
name: Audit
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: npm install
run: npm install
- name: Bootstrap
run: npm run bootstrap
- name: audit tools (without allow-list)
run: npm audit --audit-level=moderate --omit dev
- name: audit packages
run: npm run audit-all