From b5b03477b8a9ef30d0e97c86b4dde9e441188cb4 Mon Sep 17 00:00:00 2001 From: k1rnt Date: Sun, 16 Oct 2022 02:20:39 +0900 Subject: [PATCH] fix(ci): replace set-output to GITHUB_OUTPUT --- .github/workflows/build-snapshot.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/device-tests.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index 23af659c4..08a9b1b04 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -129,7 +129,7 @@ jobs: if [ "$API_LEVEL" -ge "28" ]; then TARGET="google_apis" fi - echo "::set-output name=TARGET::$TARGET" + echo "TARGET=$TARGET" >> $GITHUB_OUTPUT - name: Run tests uses: reactivecircus/android-emulator-runner@v2 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89670e87d..3625e2cdf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -127,7 +127,7 @@ jobs: if [ "$API_LEVEL" -ge "28" ]; then TARGET="google_apis" fi - echo "::set-output name=TARGET::$TARGET" + echo "TARGET=$TARGET" >> $GITHUB_OUTPUT - name: Determine emulator arch id: determine-arch env: @@ -137,7 +137,7 @@ jobs: if [ "$API_LEVEL" -ge "31" ]; then ARCH="x86_64" fi - echo "::set-output name=ARCH::$ARCH" + echo "ARCH=$ARCH" >> $GITHUB_OUTPUT - name: Run tests uses: reactivecircus/android-emulator-runner@v2 with: diff --git a/.github/workflows/device-tests.yml b/.github/workflows/device-tests.yml index 0d9ca2b0a..416b380bf 100644 --- a/.github/workflows/device-tests.yml +++ b/.github/workflows/device-tests.yml @@ -59,7 +59,7 @@ jobs: if [ "$API_LEVEL" -ge "29" ]; then TARGET="google_apis" fi - echo "::set-output name=TARGET::$TARGET" + echo "TARGET=$TARGET" >> $GITHUB_OUTPUT - name: Run device tests uses: reactivecircus/android-emulator-runner@v2