From 3496011e35dfb416db34fccaad4cac7439207576 Mon Sep 17 00:00:00 2001 From: KanchiMoe <5897898+KanchiMoe@users.noreply.github.com> Date: Thu, 27 Apr 2023 21:11:27 +0000 Subject: [PATCH] Convert remaining uses of set-output for Github Actions (#11352) --- .github/workflows/fleet-and-orbit.yml | 8 ++++---- .github/workflows/integration.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/fleet-and-orbit.yml b/.github/workflows/fleet-and-orbit.yml index f255f12fbe..b2378a2be0 100644 --- a/.github/workflows/fleet-and-orbit.yml +++ b/.github/workflows/fleet-and-orbit.yml @@ -46,11 +46,11 @@ jobs: - id: gen run: | UUID=$(uuidgen) - echo "::set-output name=subdomain::fleet-test-$UUID" - echo "::set-output name=domain::fleet-test-$UUID.fleetuem.com" - echo "::set-output name=address::https://fleet-test-$UUID.fleetuem.com" + echo "subdomain=fleet-test-$UUID" >> $GITHUB_OUTPUT + echo "domain=fleet-test-$UUID.fleetuem.com" >> $GITHUB_OUTPUT + echo "address=https://fleet-test-$UUID.fleetuem.com" >> $GITHUB_OUTPUT ENROLL=$(uuidgen) - echo "::set-output name=enroll_secret::$ENROLL" + echo "enroll_secret=$ENROLL" >> $GITHUB_OUTPUT run-server: timeout-minutes: 60 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b1a26588d8..b7aa1a0a72 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -143,7 +143,7 @@ jobs: sleep 5 done TOKEN=$(cat ~/.fleet/config| grep token | awk '{ print $2 }') - echo "::set-output name=token::$TOKEN" + echo "token=$TOKEN" >> $GITHUB_OUTPUT orbit-macos: timeout-minutes: 15