Skip to content

Commit 54864ba

Browse files
authored
Trim whitespace from expected SHA256 value in vulnerability-scan.yml
1 parent 8242144 commit 54864ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/vulnerability-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
for row in $versions; do
4141
entry=$(echo "$row" | base64 --decode)
4242
version=$(echo "$entry" | jq -r '.version')
43-
expected_sha256=$(echo "$entry" | jq -r '.sha256')
43+
expected_sha256=$(echo "$entry" | jq -r '.sha256' | tr -d '\xEF\xBB\xBF' | tr -d '[:space:]')
4444
4545
echo "--- Processing EPPlus $version ---"
4646

0 commit comments

Comments
 (0)