From: Junio C Hamano Date: Sat, 10 Dec 2022 05:01:05 +0000 (+0900) Subject: Merge branch 'ab/ci-retire-set-output' X-Git-Tag: v2.39.0~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82444ead4ccb89afaba5c134d0df567e1500d942;p=thirdparty%2Fgit.git Merge branch 'ab/ci-retire-set-output' CI fix. * ab/ci-retire-set-output: CI: migrate away from deprecated "set-output" syntax --- 82444ead4ccb89afaba5c134d0df567e1500d942 diff --cc .github/workflows/main.yml index f0412e220a,912fe14c6e..286319d789 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@@ -34,10 -34,10 +34,10 @@@ jobs then enabled=no fi - echo "::set-output name=enabled::$enabled" + echo "enabled=$enabled" >>$GITHUB_OUTPUT - name: skip if the commit or tree was already tested id: skip-if-redundant - uses: actions/github-script@v3 + uses: actions/github-script@v6 if: steps.check-ref.outputs.enabled == 'yes' with: github-token: ${{secrets.GITHUB_TOKEN}}