From bbbadc843697831dd80988f07e3992edbfe04008 Mon Sep 17 00:00:00 2001 From: Gary Sassano <10464497+garysassano@users.noreply.github.com> Date: Thu, 4 Jan 2024 18:30:36 +0100 Subject: [PATCH] check for axios 1.6.0 instead of 0.21.2 (#17) --- .github/workflows/3-dependabot-security.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/3-dependabot-security.yml b/.github/workflows/3-dependabot-security.yml index 0316bc7..c599740 100644 --- a/.github/workflows/3-dependabot-security.yml +++ b/.github/workflows/3-dependabot-security.yml @@ -55,18 +55,18 @@ jobs: fetch-depth: 0 # Let's get all the branches. # Verify the PR added the dependabot changes. - - name: Check package for axios version 0.21.2 + - name: Check package for axios version 1.6.0 uses: skills/action-check-file@v1 with: file: "code/src/AttendeeSite/package.json" - search: "0.21.2" + search: "1.6.0" # Verify the PR added the dependabot changes. - - name: Check package-lock for axios version 0.21.2 + - name: Check package-lock for axios version 1.6.0 uses: skills/action-check-file@v1 with: file: "code/src/AttendeeSite/package-lock.json" - search: "0.21.2" + search: "1.6.0" # In README.md, switch step 3 for step 4. - name: Update to step 4