diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index 7f61c14..a3bbd06 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -126,7 +126,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 a1a2d3a..88f488d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -126,7 +126,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/device-tests.yml b/.github/workflows/device-tests.yml index 07ffeff..6576055 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