From 302f205fed36a60d149b0ab65598c2dc9efaa47a Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 14 Nov 2020 22:45:46 +0100 Subject: [PATCH] Github ios CI: Run on macos-10.14 This is what my laptop has, and hopefully it won't get stuck on this. Also removing gnupg as it is isn't required as gpg is installed on this image. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2df44184..26c70bd1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,12 +7,12 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-10.14 timeout-minutes: 30 steps: - uses: actions/checkout@v1 - name: Install gpg - run: brew install gnupg git-crypt md5sha1sum + run: brew install git-crypt md5sha1sum - name: Unlock Secrets env: GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}