From ef670a986415ee28a71a30a6cf8e5a890a938954 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 23 Mar 2022 10:32:57 +0000 Subject: [PATCH 1/2] Update actions/cache action to v3 --- .github/workflows/browserslist-stats-cron.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/browserslist-stats-cron.yml b/.github/workflows/browserslist-stats-cron.yml index 5b2b7278..2678a153 100644 --- a/.github/workflows/browserslist-stats-cron.yml +++ b/.github/workflows/browserslist-stats-cron.yml @@ -19,7 +19,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - uses: actions/cache@v3 id: yarn-cache with: path: | From b057c88c78b08db6725afe8c94365136c97f2c48 Mon Sep 17 00:00:00 2001 From: AndrewLeedham Date: Wed, 23 Mar 2022 12:13:46 +0000 Subject: [PATCH 2/2] Allow minimist vulnerability --- __tests__/audit.test.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/__tests__/audit.test.js b/__tests__/audit.test.js index 712fa2dc..f0b155b9 100644 --- a/__tests__/audit.test.js +++ b/__tests__/audit.test.js @@ -10,11 +10,6 @@ test('packages do not have vunerabilities', () => { level: 'moderate', dependencyType: 'dependencies', }).toPassPackageAudit({ - allow: [ - // Patched version is ESM! - 'ansi-regex', - // No patch available. - 'trim-off-newlines', - ], + allow: ['minimist'], }); });