From 6472b64f2508fb91524c22db5aa17e92e24cbcde Mon Sep 17 00:00:00 2001 From: Johannes Klein Date: Fri, 14 Jun 2024 14:37:55 +0200 Subject: [PATCH] Use older runner --- .github/workflows/e2e_android.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e_android.yml b/.github/workflows/e2e_android.yml index 20c762a7c..bb3b3ff03 100644 --- a/.github/workflows/e2e_android.yml +++ b/.github/workflows/e2e_android.yml @@ -9,7 +9,7 @@ concurrency: jobs: checksecret: name: check for oauth client - runs-on: macos-latest + runs-on: macos-13 outputs: is_SECRETS_PRESENT_set: ${{ steps.checksecret_job.outputs.is_SECRETS_PRESENT_set }} steps: @@ -24,7 +24,7 @@ jobs: test: needs: checksecret if: needs.checksecret.outputs.is_SECRETS_PRESENT_set == 'true' - runs-on: macos-latest + runs-on: macos-13 # Kill the task if not finished after 60 minutes timeout-minutes: 60 @@ -142,7 +142,7 @@ jobs: name: Notify Slack needs: test if: ${{ success() || failure() }} - runs-on: macos-latest + runs-on: macos-13 steps: - uses: iRoachie/slack-github-actions@v2.3.0 if: env.SLACK_WEBHOOK_URL != null