Skip to content

Commit 67f3f23

Browse files
authored
Merge pull request #6144 from commercialhaskell/fix6143
Fix #6143 Follow GitHub instructions to replace set-output commands
2 parents 62f6709 + 963ba33 commit 67f3f23

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/integration-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ jobs:
124124
env:
125125
SELF_HOSTED_RUNNERS: ${{ secrets.SELF_HOSTED_RUNNERS || (github.repository_owner == 'commercialhaskell' && 'arm64') }}
126126
run: |
127-
echo "::set-output name=runners::$SELF_HOSTED_RUNNERS"
127+
echo "runners=$SELF_HOSTED_RUNNERS" >> $GITHUB_OUTPUT
128128
if echo "$SELF_HOSTED_RUNNERS" | grep -q 'arm64'; then
129-
echo "::set-output name=arm64::['self-hosted', 'linux', 'ARM64']"
130-
echo ::set-output name=test-arm64::true
129+
echo "arm64=['self-hosted', 'linux', 'ARM64']" >> $GITHUB_OUTPUT
130+
echo "test-arm64=true" >> $GITHUB_OUTPUT
131131
else
132-
echo "::set-output name=arm64::'ubuntu-latest'"
133-
echo ::set-output name=test-arm64::false
132+
echo "arm64='ubuntu-latest'" >> $GITHUB_OUTPUT
133+
echo "test-arm64=false" >> $GITHUB_OUTPUT
134134
fi
135135
136136
linux-arm64:

0 commit comments

Comments
 (0)