From 503a30092f91c4836a2e514846836070d01cf516 Mon Sep 17 00:00:00 2001 From: KanchiMoe <5897898+KanchiMoe@users.noreply.github.com> Date: Wed, 26 Apr 2023 15:15:23 +0000 Subject: [PATCH] Fix integration Github action using the deprecated command set-output (#11282) --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index e35aa90b08..b1a26588d8 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -34,8 +34,8 @@ jobs: - id: gen run: | UUID=$(uuidgen) - echo "::set-output name=subdomain::fleet-test-$UUID" - echo "::set-output name=address::https://fleet-test-$UUID.fleetuem.com" + echo "subdomain=fleet-test-$UUID" >> $GITHUB_OUTPUT + echo "address=https://fleet-test-$UUID.fleetuem.com" >> $GITHUB_OUTPUT run-server: runs-on: ubuntu-latest