From a3460714010b8b434b35a12404cd78836063ed6b Mon Sep 17 00:00:00 2001 From: cartland Date: Thu, 17 Apr 2025 11:33:10 -0700 Subject: [PATCH 1/2] Add workflow_dispatch trigger to workflows from GitHub --- .github/workflows/android.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index b83f04f..15389c8 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -1,6 +1,7 @@ name: Android CI on: + workflow_dispatch: push: branches: [ master, preferences_datastore, proto_datastore ] pull_request: From bcbadeef43d74f469cb6da4e063ff93d5694a6a2 Mon Sep 17 00:00:00 2001 From: cartland Date: Mon, 5 May 2025 16:00:37 -0700 Subject: [PATCH 2/2] Update android.yml workflow This commit updates the android.yml workflow to use: - actions/checkout@v4 - actions/setup-java@v4 --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 15389c8..f7d1407 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -14,10 +14,10 @@ jobs: timeout-minutes: 45 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: set up JDK 11 - uses: actions/setup-java@v2 + uses: actions/setup-java@v4 with: java-version: '11' distribution: 'adopt'