From a20b2940cd93994554e54964f77c7694f258b9b7 Mon Sep 17 00:00:00 2001 From: jongwooo Date: Wed, 27 Sep 2023 14:01:56 +0900 Subject: [PATCH] chore: Replace deprecated command with environment file Signed-off-by: jongwooo --- .github/actions/docker/build-api/action.yml | 2 +- .../actions/docker/build-worker/action.yml | 2 +- .github/workflows/dev-deploy-embed.yml | 2 +- .github/workflows/dev-deploy-inbound-mail.yml | 2 +- .github/workflows/dev-deploy-web.yml | 2 +- .github/workflows/dev-deploy-webhook.yml | 2 +- .github/workflows/dev-deploy-widget.yml | 2 +- .github/workflows/dev-deploy-ws.yml | 2 +- .github/workflows/jarvis.yml | 2 +- .github/workflows/prod-deploy-api.yml | 2 +- .github/workflows/prod-deploy-embed.yml | 2 +- .../workflows/prod-deploy-inbound-mail.yml | 2 +- .github/workflows/prod-deploy-web.yml | 2 +- .github/workflows/prod-deploy-webhook.yml | 2 +- .github/workflows/prod-deploy-widget.yml | 2 +- .github/workflows/prod-deploy-worker.yml | 2 +- .github/workflows/prod-deploy-ws.yml | 2 +- .github/workflows/reusable-api-e2e.yml | 4 +-- .github/workflows/reusable-web-e2e.yml | 4 +-- .github/workflows/reusable-widget-e2e.yml | 4 +-- .github/workflows/reusable-worker-e2e.yml | 4 +-- .github/workflows/reusable-ws-e2e.yml | 4 +-- .github/workflows/staging-deploy-web.yml | 2 +- .github/workflows/test.yml | 32 +++++++++---------- 24 files changed, 44 insertions(+), 44 deletions(-) diff --git a/.github/actions/docker/build-api/action.yml b/.github/actions/docker/build-api/action.yml index a7b528e83d2..4566e4981ba 100644 --- a/.github/actions/docker/build-api/action.yml +++ b/.github/actions/docker/build-api/action.yml @@ -103,7 +103,7 @@ runs: docker run --network=host --name api -dit --env NODE_ENV=test ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG docker run --network=host appropriate/curl --retry 10 --retry-delay 5 --retry-connrefused http://localhost:1337/v1/health-check | grep 'ok' - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Optionally tag docker image if: ${{ inputs.tag }} diff --git a/.github/actions/docker/build-worker/action.yml b/.github/actions/docker/build-worker/action.yml index 5ba985262f1..c2cf91bd604 100644 --- a/.github/actions/docker/build-worker/action.yml +++ b/.github/actions/docker/build-worker/action.yml @@ -106,7 +106,7 @@ runs: docker run --network=host --name worker -dit --env NODE_ENV=test ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG docker run --network=host appropriate/curl --retry 10 --retry-delay 5 --retry-connrefused http://localhost:1342/v1/health-check | grep 'ok' - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Optionally tag docker image if: ${{ inputs.tag }} diff --git a/.github/workflows/dev-deploy-embed.yml b/.github/workflows/dev-deploy-embed.yml index 5fa1c1ff759..f9c79244aeb 100644 --- a/.github/workflows/dev-deploy-embed.yml +++ b/.github/workflows/dev-deploy-embed.yml @@ -67,4 +67,4 @@ jobs: docker tag ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/.github/workflows/dev-deploy-inbound-mail.yml b/.github/workflows/dev-deploy-inbound-mail.yml index 26428d5b730..af72d5d48b2 100644 --- a/.github/workflows/dev-deploy-inbound-mail.yml +++ b/.github/workflows/dev-deploy-inbound-mail.yml @@ -79,7 +79,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Checkout cloud infra uses: actions/checkout@master diff --git a/.github/workflows/dev-deploy-web.yml b/.github/workflows/dev-deploy-web.yml index 37a0aed554e..de9e8717b23 100644 --- a/.github/workflows/dev-deploy-web.yml +++ b/.github/workflows/dev-deploy-web.yml @@ -121,7 +121,7 @@ jobs: -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG \ -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev \ -f apps/web/Dockerfile . - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 if: failure() diff --git a/.github/workflows/dev-deploy-webhook.yml b/.github/workflows/dev-deploy-webhook.yml index 618b3345e8d..e51bcca3147 100644 --- a/.github/workflows/dev-deploy-webhook.yml +++ b/.github/workflows/dev-deploy-webhook.yml @@ -55,7 +55,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Checkout cloud infra uses: actions/checkout@master diff --git a/.github/workflows/dev-deploy-widget.yml b/.github/workflows/dev-deploy-widget.yml index fa01ddc89b2..e5c4aed035c 100644 --- a/.github/workflows/dev-deploy-widget.yml +++ b/.github/workflows/dev-deploy-widget.yml @@ -94,7 +94,7 @@ jobs: docker tag ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 if: failure() diff --git a/.github/workflows/dev-deploy-ws.yml b/.github/workflows/dev-deploy-ws.yml index 87e5e54a89e..7acc3a28dbd 100644 --- a/.github/workflows/dev-deploy-ws.yml +++ b/.github/workflows/dev-deploy-ws.yml @@ -103,7 +103,7 @@ jobs: docker tag ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Render Amazon ECS task definition id: render-container diff --git a/.github/workflows/jarvis.yml b/.github/workflows/jarvis.yml index 98eb53c7b24..83551256773 100644 --- a/.github/workflows/jarvis.yml +++ b/.github/workflows/jarvis.yml @@ -18,7 +18,7 @@ jobs: body="${body//'%'/'%25'}" body="${body//$'\n'/'%0A'}" body="${body//$'\r'/'%0D'}" - echo "::set-output name=body::$body" + echo "body=$body" >> $GITHUB_OUTPUT - name: Add comment uses: peter-evans/create-or-update-comment@v2 with: diff --git a/.github/workflows/prod-deploy-api.yml b/.github/workflows/prod-deploy-api.yml index d6495b62c24..b1d8b1fa3c6 100644 --- a/.github/workflows/prod-deploy-api.yml +++ b/.github/workflows/prod-deploy-api.yml @@ -122,7 +122,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT deploy_prod_api_eu: needs: build_prod_image diff --git a/.github/workflows/prod-deploy-embed.yml b/.github/workflows/prod-deploy-embed.yml index c444181319f..07cbb1e0547 100644 --- a/.github/workflows/prod-deploy-embed.yml +++ b/.github/workflows/prod-deploy-embed.yml @@ -118,4 +118,4 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/.github/workflows/prod-deploy-inbound-mail.yml b/.github/workflows/prod-deploy-inbound-mail.yml index eda7f51d819..9ebf2bf2413 100644 --- a/.github/workflows/prod-deploy-inbound-mail.yml +++ b/.github/workflows/prod-deploy-inbound-mail.yml @@ -70,7 +70,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT deploy_prod_inbound_mail_eu: needs: diff --git a/.github/workflows/prod-deploy-web.yml b/.github/workflows/prod-deploy-web.yml index 1b5a2268ea3..b757e13f394 100644 --- a/.github/workflows/prod-deploy-web.yml +++ b/.github/workflows/prod-deploy-web.yml @@ -217,4 +217,4 @@ jobs: -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod \ -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest \ -f apps/web/Dockerfile . - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/.github/workflows/prod-deploy-webhook.yml b/.github/workflows/prod-deploy-webhook.yml index 080b0f541a0..10f34b95b70 100644 --- a/.github/workflows/prod-deploy-webhook.yml +++ b/.github/workflows/prod-deploy-webhook.yml @@ -48,7 +48,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT deploy_prod_webhook_eu: needs: diff --git a/.github/workflows/prod-deploy-widget.yml b/.github/workflows/prod-deploy-widget.yml index 4d1d5d6933e..33f1a20d6fa 100644 --- a/.github/workflows/prod-deploy-widget.yml +++ b/.github/workflows/prod-deploy-widget.yml @@ -157,4 +157,4 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT diff --git a/.github/workflows/prod-deploy-worker.yml b/.github/workflows/prod-deploy-worker.yml index 49fbb7eeb96..cd3b480e09c 100644 --- a/.github/workflows/prod-deploy-worker.yml +++ b/.github/workflows/prod-deploy-worker.yml @@ -81,7 +81,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT deploy_prod_worker_eu: needs: build_prod_image diff --git a/.github/workflows/prod-deploy-ws.yml b/.github/workflows/prod-deploy-ws.yml index 6c2a2d4e5f7..aef0b169635 100644 --- a/.github/workflows/prod-deploy-ws.yml +++ b/.github/workflows/prod-deploy-ws.yml @@ -59,7 +59,7 @@ jobs: docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:prod docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:latest docker push ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT deploy_prod_ws_eu: needs: diff --git a/.github/workflows/reusable-api-e2e.yml b/.github/workflows/reusable-api-e2e.yml index 47b0a501d68..703863658f3 100644 --- a/.github/workflows/reusable-api-e2e.yml +++ b/.github/workflows/reusable-api-e2e.yml @@ -40,9 +40,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo "has_token=true" >> $GITHUB_OUTPUT else - echo ::set-output has_token=false + echo "has_token=false" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 # checkout with submodules if token is provided diff --git a/.github/workflows/reusable-web-e2e.yml b/.github/workflows/reusable-web-e2e.yml index 0e0a39c0654..4cbc5f16302 100644 --- a/.github/workflows/reusable-web-e2e.yml +++ b/.github/workflows/reusable-web-e2e.yml @@ -45,9 +45,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo "has_token=true" >> $GITHUB_OUTPUT else - echo ::set-output has_token=false + echo "has_token=false" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 diff --git a/.github/workflows/reusable-widget-e2e.yml b/.github/workflows/reusable-widget-e2e.yml index 3c62fe5954e..2e786ce7ed2 100644 --- a/.github/workflows/reusable-widget-e2e.yml +++ b/.github/workflows/reusable-widget-e2e.yml @@ -45,9 +45,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo "has_token=true" >> $GITHUB_OUTPUT else - echo ::set-output has_token=false + echo "has_token=false" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 # checkout with submodules if token is provided diff --git a/.github/workflows/reusable-worker-e2e.yml b/.github/workflows/reusable-worker-e2e.yml index a2ee98573d7..976b6db593b 100644 --- a/.github/workflows/reusable-worker-e2e.yml +++ b/.github/workflows/reusable-worker-e2e.yml @@ -40,9 +40,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo "has_token=true" >> $GITHUB_OUTPUT else - echo ::set-output has_token=false + echo "has_token=false" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 # checkout with submodules if token is provided diff --git a/.github/workflows/reusable-ws-e2e.yml b/.github/workflows/reusable-ws-e2e.yml index 33d81b4fc10..580ee7fee25 100644 --- a/.github/workflows/reusable-ws-e2e.yml +++ b/.github/workflows/reusable-ws-e2e.yml @@ -39,9 +39,9 @@ jobs: - id: setup run: | if ! [[ -z "${{ secrets.SUBMODULES_TOKEN }}" ]]; then - echo ::set-output has_token=true + echo "has_token=true" >> $GITHUB_OUTPUT else - echo ::set-output has_token=false + echo "has_token=false" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 # checkout with submodules if token is provided diff --git a/.github/workflows/staging-deploy-web.yml b/.github/workflows/staging-deploy-web.yml index 310ea5f06f5..e957e4d7b55 100644 --- a/.github/workflows/staging-deploy-web.yml +++ b/.github/workflows/staging-deploy-web.yml @@ -120,7 +120,7 @@ jobs: -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG \ -t ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:dev \ -f apps/web/Dockerfile . - echo "::set-output name=IMAGE::ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" + echo "IMAGE=ghcr.io/$REGISTRY_OWNER/$DOCKER_NAME:$IMAGE_TAG" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 if: failure() diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a2eb9084770..a90eb1a312a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,9 +49,9 @@ jobs: id: get-base-branch-name run: | if [[ "${{github.event.pull_request.base.ref}}" != "" ]]; then - echo "::set-output name=branch::${{github.event.pull_request.base.ref}}" + echo "branch=${{github.event.pull_request.base.ref}}" >> $GITHUB_OUTPUT else - echo "::set-output name=branch::main" + echo "branch=main" >> $GITHUB_OUTPUT fi - uses: actions/checkout@v3 with: @@ -72,22 +72,22 @@ jobs: run: | if [[ "${{github.event.pull_request.base.ref}}" == "" && "${{steps.branch-name.outputs.current_branch}}" == "main" ]]; then echo "Running ALL" - echo "::set-output name=test-unit::$(pnpm run get-affected test:unit --all | tail -n +5)" - echo "::set-output name=test-e2e::$(pnpm run get-affected test:e2e --all | tail -n +5)" - echo "::set-output name=test-e2e-ee::$(pnpm run get-affected test:e2e:ee --all | tail -n +5)" - echo "::set-output name=test-cypress::$(pnpm run get-affected cypress:run --all | tail -n +5)" - echo "::set-output name=test-providers::$(pnpm run get-affected test --all providers | tail -n +5)" - echo "::set-output name=test-packages::$(pnpm run get-affected test --all packages | tail -n +5)" - echo "::set-output name=test-libs::$(pnpm run get-affected test --all libs | tail -n +5)" + echo "test-unit=$(pnpm run get-affected test:unit --all | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-e2e=$(pnpm run get-affected test:e2e --all | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-e2e-ee=$(pnpm run get-affected test:e2e:ee --all | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-cypress=$(pnpm run get-affected cypress:run --all | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-providers=$(pnpm run get-affected test --all providers | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-packages=$(pnpm run get-affected test --all packages | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-libs=$(pnpm run get-affected test --all libs | tail -n +5)" >> $GITHUB_OUTPUT else echo "Running PR origin/${{steps.get-base-branch-name.outputs.branch}}" - echo "::set-output name=test-unit::$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" - echo "::set-output name=test-e2e::$(pnpm run get-affected test:e2e origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" - echo "::set-output name=test-e2e-ee::$(pnpm run get-affected test:e2e:ee origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" - echo "::set-output name=test-cypress::$(pnpm run get-affected cypress:run origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" - echo "::set-output name=test-providers::$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} providers | tail -n +5)" - echo "::set-output name=test-packages::$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} packages | tail -n +5)" - echo "::set-output name=test-libs::$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} libs | tail -n +5)" + echo "test-unit=$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-e2e=$(pnpm run get-affected test:e2e origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-e2e-ee=$(pnpm run get-affected test:e2e:ee origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-cypress=$(pnpm run get-affected cypress:run origin/${{steps.get-base-branch-name.outputs.branch}} | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-providers=$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} providers | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-packages=$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} packages | tail -n +5)" >> $GITHUB_OUTPUT + echo "test-libs=$(pnpm run get-affected test origin/${{steps.get-base-branch-name.outputs.branch}} libs | tail -n +5)" >> $GITHUB_OUTPUT fi test_web: