From ce5db17cf378b4ebee4361bd9d628acd09ceb260 Mon Sep 17 00:00:00 2001 From: Arun Date: Thu, 11 Jan 2024 20:13:11 -0800 Subject: [PATCH] ci: Use GITHUB_OUTPUT envvar instead of set-output command --- .github/workflows/daily_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily_release.yml b/.github/workflows/daily_release.yml index 35b826e1f13..7508fca6de0 100644 --- a/.github/workflows/daily_release.yml +++ b/.github/workflows/daily_release.yml @@ -33,7 +33,7 @@ jobs: RELEASE_TAGS=$(git tag --contains $(git rev-parse HEAD) | grep "^${BRANCH/.x/}") || true if [ -n "${RELEASE_TAGS}" ]; then echo The latest change was already included in a release, skipping release - echo ::set-output name=skip::true + echo "skip=true" >> $GITHUB_OUTPUT fi - name: Set up JDK ${{ matrix.java }} if: steps.should.outputs.skip != 'true'