From cc9699c13499730788f00b75428b3ee44258650f Mon Sep 17 00:00:00 2001 From: David Refoua Date: Mon, 17 Oct 2022 22:16:26 +0330 Subject: [PATCH] resolve issues with variable name --- .github/workflows/vendor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/vendor.yml b/.github/workflows/vendor.yml index 8a51ab0..56dfc89 100644 --- a/.github/workflows/vendor.yml +++ b/.github/workflows/vendor.yml @@ -39,7 +39,7 @@ jobs: foreach ($s in $newVersion) { $oldVersion = ($currentVersion | Where-Object {$_.name -eq $s.name}).version if ($s.version -ne $oldVersion) { - $listUpdated += "$($s.name), " + $listUpdated += "$($s.name v$s.version), " $updateMessage += "| **$($s.name)** | $oldVersion | **$($s.version)** |`n" } } @@ -54,7 +54,7 @@ jobs: title: 'Updates to `${{ env.COUNT_UPDATED }}` vendored dependencies' body: | ### Automatically updated `${{ env.COUNT_UPDATED }}` dependencies: - ${{ steps.make_changes.outputs.updateMessage }} + ${{ steps.make-changes.outputs.updateMessage }} --- Please verify and then **Merge** the pull request to update. commit-message: 'Update vendored dependencies (${{ env.LIST_UPDATED }})'