diff --git a/.github/workflows/audit-bulk.yaml b/.github/workflows/audit-bulk.yaml index 7f4a2b40791..1469fe893d1 100644 --- a/.github/workflows/audit-bulk.yaml +++ b/.github/workflows/audit-bulk.yaml @@ -16,7 +16,7 @@ jobs: node-version: 18 - run: | # for each package-lock.json, run npm audit fix - for `find packages -type d -name node_modules -prune -o -name package-lock.json -print | grep -v test` + for $(find packages -type d -name node_modules -prune -o -name package-lock.json -print | grep -v test) do # ignore failures and continue npm audit fix || true