diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 77050bc25fd..4cb31c7cef7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,7 @@ jobs: run: | RELEASE_VERSION="${RELEASE_TAG_VERSION:1}" echo "RELEASE_VERSION=${RELEASE_VERSION}" >> "$GITHUB_ENV" - echo "::set-output name=RELEASE_VERSION::${RELEASE_VERSION}" + echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_OUTPUT - name: Install dependencies run: make dev - name: Run all tests, linting and baselines diff --git a/.github/workflows/reusable_export_pr_details.yml b/.github/workflows/reusable_export_pr_details.yml index ec168b95f20..2a1b45331d1 100644 --- a/.github/workflows/reusable_export_pr_details.yml +++ b/.github/workflows/reusable_export_pr_details.yml @@ -71,19 +71,19 @@ jobs: # otherwise the parent caller won't see them regardless on how outputs are set. - name: "Export Pull Request Number" id: prNumber - run: echo ::set-output name=prNumber::$(jq -c '.number' ${FILENAME}) + run: echo "prNumber=$(jq -c '.number' ${FILENAME})" >> $GITHUB_OUTPUT - name: "Export Pull Request Title" id: prTitle - run: echo ::set-output name=prTitle::$(jq -c '.pull_request.title' ${FILENAME}) + run: echo "prTitle=$(jq -c '.pull_request.title' ${FILENAME})" >> $GITHUB_OUTPUT - name: "Export Pull Request Body" id: prBody - run: echo ::set-output name=prBody::$(jq -c '.pull_request.body' ${FILENAME}) + run: echo "prBody=$(jq -c '.pull_request.body' ${FILENAME})" >> $GITHUB_OUTPUT - name: "Export Pull Request Author" id: prAuthor - run: echo ::set-output name=prAuthor::$(jq -c '.pull_request.user.login' ${FILENAME}) + run: echo "prAuthor=$(jq -c '.pull_request.user.login' ${FILENAME})" >> $GITHUB_OUTPUT - name: "Export Pull Request Action" id: prAction - run: echo ::set-output name=prAction::$(jq -c '.action' ${FILENAME}) + run: echo "prAction=$(jq -c '.action' ${FILENAME})" >> $GITHUB_OUTPUT - name: "Export Pull Request Merged status" id: prIsMerged - run: echo ::set-output name=prIsMerged::$(jq -c '.pull_request.merged' ${FILENAME}) + run: echo "prIsMerged=$(jq -c '.pull_request.merged' ${FILENAME})" >> $GITHUB_OUTPUT