From 6eb6cba0bad7abf091e452417ddabd1ef11e9a72 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Tue, 9 Apr 2024 21:14:22 +0100 Subject: [PATCH] Update GH actions (#945) * add @salmaahhmed to CODEOWNERS * update GH Actions --- .github/CODEOWNERS | 1 + .github/workflows/prepare.yaml | 5 +++-- .github/workflows/publish.yaml | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8ad10be8..a7b8502e 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1,2 @@ * @bartekpacia +* @salmaahhmed diff --git a/.github/workflows/prepare.yaml b/.github/workflows/prepare.yaml index 3c02310d..89b081e9 100644 --- a/.github/workflows/prepare.yaml +++ b/.github/workflows/prepare.yaml @@ -13,15 +13,16 @@ jobs: strategy: fail-fast: false matrix: - flutter-version: ['3.10.x'] + flutter-version: ["3.19.x"] steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Flutter uses: subosito/flutter-action@v2 with: + channel: stable flutter-version: ${{ matrix.flutter-version }} - name: flutter pub get diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3a390bd0..83682d51 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -2,7 +2,7 @@ name: publish on: push: - tags: ['v*'] + tags: ["v*"] jobs: publish: @@ -15,7 +15,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # This step adds the auth token for pub.dev - name: Set up Dart