File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 39
39
id : check
40
40
run : |
41
41
if [ -z "$GITHUB_BASE_REF" ]; then
42
- echo '::set-output name= run_tests:: true'
43
- echo '::set-output name= run_ssl_tests:: true'
42
+ echo " run_tests= true" >> $GITHUB_OUTPUT
43
+ echo " run_ssl_tests= true" >> $GITHUB_OUTPUT
44
44
else
45
45
git fetch origin $GITHUB_BASE_REF --depth=1
46
46
# git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more
56
56
# into the PR branch anyway.
57
57
#
58
58
# https://github.com/python/core-workflow/issues/373
59
- git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name= run_tests:: true' || true
60
- git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo '::set-output name= run_ssl_tests:: true' || true
59
+ git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo " run_tests= true" >> $GITHUB_OUTPUT || true
60
+ git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo " run_ssl_tests= true" >> $GITHUB_OUTPUT || true
61
61
fi
62
62
63
63
check_abi :
You can’t perform that action at this time.
0 commit comments