Skip to content

Commit fdcc5a6

Browse files
committed
ci: Convert deprecated 'set-output' command usage
This commit converts all deprecated `set-output` command usages to use the new `GITHUB_OUTPUT` file. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent aac26ec commit fdcc5a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,10 @@ jobs:
332332
MATRIX_TESTENVS=$(echo "${MATRIX_TESTENVS}" | sed -zr 's/,([^,]*$)/\1/')
333333
334334
# Output matrix variables
335-
echo "::set-output name=hosts::${MATRIX_HOSTS}"
336-
echo "::set-output name=targets::${MATRIX_TARGETS}"
337-
echo "::set-output name=testenvs::${MATRIX_TESTENVS}"
338-
echo "::set-output name=debug::${MATRIX_DEBUG}"
335+
echo "hosts=${MATRIX_HOSTS}" >> $GITHUB_OUTPUT
336+
echo "targets=${MATRIX_TARGETS}" >> $GITHUB_OUTPUT
337+
echo "testenvs=${MATRIX_TESTENVS}" >> $GITHUB_OUTPUT
338+
echo "debug=${MATRIX_DEBUG}" >> $GITHUB_OUTPUT
339339
340340
# Prepare configuration report
341341
CONFIG_REPORT=${RUNNER_TEMP}/config-report.txt

0 commit comments

Comments
 (0)