File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4242 id : check
4343 run : |
4444 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
4747 else
4848 git fetch origin $GITHUB_BASE_REF --depth=1
4949 # git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more
5959 # into the PR branch anyway.
6060 #
6161 # 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
6464 fi
6565
6666 check_abi :
You can’t perform that action at this time.
0 commit comments