We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3fa589 commit dcbb0e9Copy full SHA for dcbb0e9
1 file changed
.github/workflows/vendor.yml
@@ -45,10 +45,10 @@ jobs:
45
env:
46
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47
run: |
48
- $currentVersion = (Get-Content .\vendor\sources.json | ConvertFrom-Json)
+ $currentVersion = (Get-Content -Raw .\vendor\sources.json | ConvertFrom-Json)
49
. .\scripts\update.ps1 -verbose
50
Set-GHVariable -Name COUNT_UPDATED -Value $count
51
- $newVersion = (Get-Content .\vendor\sources.json | ConvertFrom-Json)
+ $newVersion = (Get-Content -Raw .\vendor\sources.json | ConvertFrom-Json)
52
$listUpdated = ""
53
$updateMessage = "| Name | Old Version | New Version |`n| :--- | ---- | ---- |`n"
54
foreach ($s in $newVersion) {
0 commit comments