We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcd9762 commit 1be7e65Copy full SHA for 1be7e65
.github/workflows/security.yaml
@@ -34,21 +34,8 @@ jobs:
34
with:
35
node-version: "18"
36
37
- - name: Fetch dependencies from cache
38
- id: cache-yarn
39
- uses: actions/cache@v3
40
- with:
41
- path: "**/node_modules"
42
- key: yarn-build-${{ hashFiles('**/yarn.lock') }}
43
- restore-keys: |
44
- yarn-build-
45
-
46
- - name: Install dependencies
47
- if: steps.cache-yarn.outputs.cache-hit != 'true'
48
- run: SKIP_SUBMODULE_DEPS=1 yarn --frozen-lockfile
49
50
- name: Audit yarn for vulnerabilities
51
- run: yarn _audit
+ run: yarn audit
52
if: success()
53
54
- name: Audit npm for vulnerabilities
0 commit comments