From 66d31b1982b45622d53f68c7c59276a4cbf5e885 Mon Sep 17 00:00:00 2001 From: James <160366376+hortison@users.noreply.github.com> Date: Wed, 6 May 2026 13:53:54 -0500 Subject: [PATCH] Update npm install command to use exact version Signed-off-by: James <160366376+hortison@users.noreply.github.com> --- .github/workflows/notify-dependents.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/notify-dependents.yml b/.github/workflows/notify-dependents.yml index 66538fdd5..9dfe08009 100644 --- a/.github/workflows/notify-dependents.yml +++ b/.github/workflows/notify-dependents.yml @@ -35,7 +35,7 @@ jobs: if [ -z "$release_version" ]; then candidate="$WORKFLOW_HEAD_BRANCH" - if [[ "$candidate" =~ ^v?[0-9]+\.[0-9]+\.[0-9]+ ]]; then + if [[ "$candidate" =~ v?[0-9]+\.[0-9]+\.[0-9]+ ]]; then release_version="$candidate" fi fi @@ -77,7 +77,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Make changes to pull request working-directory: ui - run: npm install @sistent/sistent@^${{ env.RELEASE_VERSION }} + run: npm install @sistent/sistent@${{ env.RELEASE_VERSION }} - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v8 @@ -120,7 +120,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Make changes to pull request working-directory: meshmap - run: npm install @sistent/sistent@^${{ env.RELEASE_VERSION }} --legacy-peer-deps + run: npm install @sistent/sistent@${{ env.RELEASE_VERSION }} --legacy-peer-deps - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v8 @@ -163,7 +163,7 @@ jobs: cache: "npm" cache-dependency-path: '**/package-lock.json' - name: Make changes to pull request - run: npm install @sistent/sistent@^${{ env.RELEASE_VERSION }} --legacy-peer-deps + run: npm install @sistent/sistent@${{ env.RELEASE_VERSION }} --legacy-peer-deps - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v8 @@ -206,7 +206,7 @@ jobs: cache-dependency-path: '**/package-lock.json' - name: Make changes to pull request working-directory: ui - run: npm install @sistent/sistent@^${{ env.RELEASE_VERSION }} + run: npm install @sistent/sistent@${{ env.RELEASE_VERSION }} - name: Create Pull Request id: cpr uses: peter-evans/create-pull-request@v8