From 6e9f1d4920db99c5cfaa5f3f8af0be60b0a87cb2 Mon Sep 17 00:00:00 2001 From: cartland Date: Tue, 6 May 2025 11:34:46 -0700 Subject: [PATCH] Update Android workflow to use ubuntu-latest This commit updates the Android workflow file `.github/workflows/android.yml` to use the `ubuntu-latest` runner image instead of `ubuntu-18.04`. --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 80dc8cc..beb601d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -25,7 +25,7 @@ jobs: build: name: Build - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1