diff --git a/.github/workflows/e2e-compatibility-workflow-call.yaml b/.github/workflows/e2e-compatibility-workflow-call.yaml index dbe6194240f..b4db9c0e075 100644 --- a/.github/workflows/e2e-compatibility-workflow-call.yaml +++ b/.github/workflows/e2e-compatibility-workflow-call.yaml @@ -26,7 +26,7 @@ jobs: # to create the matrix in the following job. test_matrix="$(cat .github/compatibility-test-matrices/${{ inputs.test-file-directory }}/${{ inputs.test-suite }}.json | jq -c)" echo $test_matrix - echo "::set-output name=test-matrix::$test_matrix" + echo "test-matrix=$test_matrix" >> $GITHUB_OUTPUT id: set-test-matrix e2e: diff --git a/.github/workflows/e2e-compatibility.yaml b/.github/workflows/e2e-compatibility.yaml index 16e946e3055..1f75d7cafaf 100644 --- a/.github/workflows/e2e-compatibility.yaml +++ b/.github/workflows/e2e-compatibility.yaml @@ -29,7 +29,7 @@ jobs: - run: | test_dir="$(echo $RELEASE_BRANCH | sed 's/\//-/')" echo $test_dir - echo "::set-output name=test-directory::$test_dir" + echo "test-directory=$test_dir" >> $GITHUB_OUTPUT id: set-test-dir # build-release-images builds all docker images that are relevant for the compatibility tests. If a single release diff --git a/.github/workflows/e2e-fork.yml b/.github/workflows/e2e-fork.yml index 827fee02250..ea14e3a6dd7 100644 --- a/.github/workflows/e2e-fork.yml +++ b/.github/workflows/e2e-fork.yml @@ -22,7 +22,7 @@ jobs: with: go-version: 1.18 - id: set-matrix - run: echo "::set-output name=matrix::$(go run cmd/build_test_matrix/main.go)" + run: echo "matrix=$(go run cmd/build_test_matrix/main.go)" >> $GITHUB_OUTPUT env: TEST_EXCLUSIONS: "TestInterTxTestSuite,TestIncentivizedInterTxTestSuite,TestUpgradeTestSuite" diff --git a/.github/workflows/e2e-test-workflow-call.yml b/.github/workflows/e2e-test-workflow-call.yml index 7838fb5178c..31713b30035 100644 --- a/.github/workflows/e2e-test-workflow-call.yml +++ b/.github/workflows/e2e-test-workflow-call.yml @@ -102,7 +102,7 @@ jobs: with: go-version: 1.18 - id: set-matrix - run: echo "::set-output name=matrix::$(go run cmd/build_test_matrix/main.go)" + run: echo "matrix=$(go run cmd/build_test_matrix/main.go)" >> $GITHUB_OUTPUT env: TEST_ENTRYPOINT: "${{ inputs.test-entry-point }}" TEST_EXCLUSIONS: "${{ inputs.test-exclusions }}" diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 28014abf2fa..ebd46c1357e 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -33,7 +33,7 @@ jobs: run: | tag=$(go run cmd/determine_simd_tag/main.go -pr "${{ github.event.pull_request.number }}" ) echo "Using tag $tag" - echo "::set-output name=simd-tag::$tag" + echo "simd-tag=$tag" >> $GITHUB_OUTPUT e2e: if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} needs: