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 42
42
id : check
43
43
run : |
44
44
if [ -z "$GITHUB_BASE_REF" ]; then
45
- echo '::set-output name= run_tests:: true'
46
- echo '::set-output name= run_ssl_tests:: true'
45
+ echo " run_tests= true" >> $GITHUB_OUTPUT
46
+ echo " run_ssl_tests= true" >> $GITHUB_OUTPUT
47
47
else
48
48
git fetch origin $GITHUB_BASE_REF --depth=1
49
49
# git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more
59
59
# into the PR branch anyway.
60
60
#
61
61
# https://github.com/python/core-workflow/issues/373
62
- git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name= run_tests:: true' || true
63
- git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo '::set-output name= run_ssl_tests:: true' || true
62
+ git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo " run_tests= true" >> $GITHUB_OUTPUT || true
63
+ git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo " run_ssl_tests= true" >> $GITHUB_OUTPUT || true
64
64
fi
65
65
66
66
check_abi :
You can’t perform that action at this time.
0 commit comments