Skip to content

Commit d948b87

Browse files
Fix YAML multiline run formatting
1 parent 07d6c2a commit d948b87

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

action.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ runs:
3535
REQUESTED_VERSION: ${{ inputs.Version }}
3636
PRERELEASE: ${{ inputs.Prerelease }}
3737
GITHUB_TOKEN: ${{ github.token }}
38-
run: | # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
38+
run:
39+
| # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
3940
# Install-PowerShell
4041
set -e
4142
echo "Requested version: [$REQUESTED_VERSION]"
@@ -142,7 +143,8 @@ runs:
142143
REQUESTED_VERSION: ${{ inputs.Version }}
143144
PRERELEASE: ${{ inputs.Prerelease }}
144145
GITHUB_TOKEN: ${{ github.token }}
145-
run: | # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
146+
run:
147+
| # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
146148
# Install-PowerShell
147149
set -e
148150
echo "Requested version: [$REQUESTED_VERSION]"
@@ -236,7 +238,8 @@ runs:
236238
REQUESTED_VERSION: ${{ inputs.Version }}
237239
PRERELEASE: ${{ inputs.Prerelease }}
238240
GITHUB_TOKEN: ${{ github.token }}
239-
run: | # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
241+
run:
242+
| # zizmor: ignore[github-env] GITHUB_PATH writes use hardcoded install dirs, not user input
240243
# Install-PowerShell
241244
Write-Host "Requested version: [$env:REQUESTED_VERSION]"
242245
Write-Host "Prerelease: [$env:PRERELEASE]"

0 commit comments

Comments
 (0)