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