diff --git a/.ci/ci-check.py b/.ci/ci-check.py index c0b2cf6b00..962bf7103c 100644 --- a/.ci/ci-check.py +++ b/.ci/ci-check.py @@ -246,9 +246,9 @@ if __name__ == "__main__": if args.run: res = check_whether_we_should_run() if res: - print("::set-output name=run::true") + print("run=true") else: - print("::set-output name=run::false") + print("run=false") sys.exit(0) else: main() diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d889501fd9..f233e904e5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -131,7 +131,7 @@ jobs: - name: Check whether to Run id: check-run run: | - python .ci/ci-check.py --whether-to-run + python .ci/ci-check.py --whether-to-run >> $GITHUB_OUTPUT - uses: msys2/setup-msys2@v2 if: steps.check-run.outputs.run == 'true' with: