From f0e12872cba22f0bc1799664ea072c79bc2782d8 Mon Sep 17 00:00:00 2001 From: jideguru Date: Wed, 7 Aug 2024 10:25:21 +0100 Subject: [PATCH] chore: fixing workflow --- .github/workflows/pull_request.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c475061..277397b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -2,10 +2,13 @@ name: 🛠️ Pull Request CI on: [push, workflow_dispatch] jobs: drive: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v4 - uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.22.0 - run: flutter --version - name: Dart Apply Fixes (if this fails, run `dart fix --apply` locally) run: dart fix --apply; git diff --exit-code