Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix GitHub_Actions set-output is deprecated #11265

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/github-actions/should-workflow-run.sh
Expand Up @@ -21,16 +21,16 @@ for bazel_target in $affected_files ; do
bazel query "$bazel_target"
done

echo "::set-output name=bazel-targets::${bazel_targets[*]}"
echo "::set-output name=run-workflow::false"
echo "{bazel-targets}=${bazel_targets[*]}" >> $GITHUB_OUTPUT
echo "{run-workflow}=false" >> $GITHUB_OUTPUT

if (( ${#bazel_targets[@]} == 0 )); then
echo "No bazel targets found after checking the diff."
exit 0
fi

if [[ " ${bazel_targets[*]} " == *"$BAZEL_TARGET_PREFIX"* ]]; then
echo "::set-output name=run-workflow::true"
echo "{run-workflow}=true" >> $GITHUB_OUTPUT
echo "Bazel targets found: ${bazel_targets[*]}"
exit 0
fi
Expand All @@ -43,7 +43,7 @@ tests=$(bazel query \
"kind(test, rdeps(//..., set(${bazel_targets[*]})))")

if [[ " ${tests[*]} " == *"$BAZEL_TARGET_PREFIX"* ]]; then
echo "::set-output name=run-workflow::true"
echo "{run-workflow}=true" >> $GITHUB_OUTPUT
echo "Test targets found: ${tests[*]}"
exit 0
fi