diff --git a/.github/workflows/.windows.yml b/.github/workflows/.windows.yml index 05f1eb51acccc57e635a57c04a6b900876248947..deef06e9d1f6c06578b472e496cc978cb2069b3d 100644 --- a/.github/workflows/.windows.yml +++ b/.github/workflows/.windows.yml @@ -231,7 +231,7 @@ jobs: # Also prepend ./... to the matrix. This is a special case to run "Test integration" step exclusively. matrix="$(gotestlist -d ${{ env.ITG_CLI_MATRIX_SIZE }} ./...)" matrix="$(echo "$matrix" | jq -c '. |= ["./..."] + .')" - echo "::set-output name=matrix::$matrix" + echo "matrix=$matrix" >> $GITHUB_OUTPUT - name: Show matrix run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 31b94a8a87f2b20446059080dd8ffe99a569eb54..adbb99702c4e47f698a1ae6b47633dd431b4e98f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,7 +76,7 @@ jobs: id: scripts run: | scripts=$(jq -ncR '[inputs]' <<< "$(ls -I .validate -I all -I default -I dco -I golangci-lint.yml -I yamllint.yaml -A ./hack/validate/)") - echo "::set-output name=matrix::$scripts" + echo "matrix=$scripts" >> $GITHUB_OUTPUT - name: Show matrix run: | @@ -403,7 +403,7 @@ jobs: # Also prepend ./... to the matrix. This is a special case to run "Test integration" step exclusively. matrix="$(gotestlist -d ${{ env.ITG_CLI_MATRIX_SIZE }} ./...)" matrix="$(echo "$matrix" | jq -c '. |= ["./..."] + .')" - echo "::set-output name=matrix::$matrix" + echo "matrix=$matrix" >> $GITHUB_OUTPUT - name: Show matrix run: |