diff --git a/.github/workflows/js-dependency-audit.yaml b/.github/workflows/js-dependency-audit.yaml index 7b9b382..dc0a772 100644 --- a/.github/workflows/js-dependency-audit.yaml +++ b/.github/workflows/js-dependency-audit.yaml @@ -132,7 +132,7 @@ jobs: (cd "${dir}" && yarn npm audit --all --recursive --json) > "${raw}" 2> "${err}" || true ;; yarn-classic) - (cd "${dir}" && yarn audit --json --groups dependencies,devDependencies) > "${raw}" 2> "${err}" || true + (cd "${dir}" && yarn audit --json) > "${raw}" 2> "${err}" || true ;; esac }