diff --git a/.github/workflows/check-links.yaml b/.github/workflows/check-links.yaml index c953d7147c8d..f74bc61c0dda 100644 --- a/.github/workflows/check-links.yaml +++ b/.github/workflows/check-links.yaml @@ -23,7 +23,7 @@ jobs: - name: Get changed files id: changes run: | - echo "::set-output name=md::$(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base origin/main ${{ github.event.pull_request.head.sha }}) ${{ github.event.pull_request.head.sha }} | grep .md$ | xargs)" + echo "md=$(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base origin/main ${{ github.event.pull_request.head.sha }}) ${{ github.event.pull_request.head.sha }} | grep .md$ | xargs)" >> $GITHUB_OUTPUT check-links: runs-on: ubuntu-latest needs: changedfiles diff --git a/.github/workflows/load-tests.yml b/.github/workflows/load-tests.yml index 6aa39a0f87c8..1873de356ac5 100644 --- a/.github/workflows/load-tests.yml +++ b/.github/workflows/load-tests.yml @@ -108,7 +108,7 @@ jobs: TEST_ARGS: "-test.run=${{ matrix.test }}" - name: Set results filename id: filename - run: echo "::set-output name=name::$(echo '${{ matrix.test }}' | sed -e 's/|/_/g')" + run: echo "name=$(echo '${{ matrix.test }}' | sed -e 's/|/_/g')" >> $GITHUB_OUTPUT - name: Create Test Result Archive if: ${{ failure() || success() }} continue-on-error: true diff --git a/.github/workflows/scripts/set_release_tag.sh b/.github/workflows/scripts/set_release_tag.sh index 71017cc78ebe..233c91f6e04a 100755 --- a/.github/workflows/scripts/set_release_tag.sh +++ b/.github/workflows/scripts/set_release_tag.sh @@ -1,5 +1,5 @@ TAG="${GITHUB_REF##*/}" if [[ $TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+.* ]] then - echo "::set-output name=tag::$TAG" + echo "tag=$TAG" >> $GITHUB_OUTPUT fi diff --git a/.github/workflows/scripts/setup_e2e_tests.sh b/.github/workflows/scripts/setup_e2e_tests.sh index e7822fb971a0..faf52f34c9a0 100755 --- a/.github/workflows/scripts/setup_e2e_tests.sh +++ b/.github/workflows/scripts/setup_e2e_tests.sh @@ -15,4 +15,4 @@ else fi done MATRIX+=",{\"test\":\"$curr\"}]}" -echo "::set-output name=loadtest_matrix::$MATRIX" +echo "loadtest_matrix=$MATRIX" >> $GITHUB_OUTPUT diff --git a/.github/workflows/scripts/setup_stability_tests.sh b/.github/workflows/scripts/setup_stability_tests.sh index 21a6be2a58b0..1d14bee7617a 100755 --- a/.github/workflows/scripts/setup_stability_tests.sh +++ b/.github/workflows/scripts/setup_stability_tests.sh @@ -8,4 +8,4 @@ for i in "${!TESTS[@]}"; do MATRIX+="{\"test\":\"$curr\"}," done MATRIX+="]}" -echo "::set-output name=stabilitytest_matrix::$MATRIX" +echo "stabilitytest_matrix=$MATRIX" >> $GITHUB_OUTPUT diff --git a/.github/workflows/scripts/verify-dist-files-exist.sh b/.github/workflows/scripts/verify-dist-files-exist.sh index 0d6e61891fea..5595dff71df3 100755 --- a/.github/workflows/scripts/verify-dist-files-exist.sh +++ b/.github/workflows/scripts/verify-dist-files-exist.sh @@ -19,8 +19,8 @@ do if [[ ! -f $f ]] then echo "$f does not exist." - echo "::set-output name=passed::false" + echo "passed=false" >> $GITHUB_OUTPUT exit 0 fi done -echo "::set-output name=passed::true" +echo "passed=true" >> $GITHUB_OUTPUT