From 34a0e0546ef6d3eba570b82b28d9346efcfd2d46 Mon Sep 17 00:00:00 2001 From: Luis Rogelio Date: Wed, 13 May 2026 01:18:08 +0200 Subject: [PATCH] fix: CI updated to 3.41.6 --- .github/workflows/checks.yaml | 8 ++++---- .github/workflows/publish.yaml | 13 ++++++------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 9371f1b..0dc2e7d 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -2,8 +2,8 @@ name: "Checks" on: pull_request: - branches: [ main ] - types: [ opened, synchronize, reopened ] + branches: [main] + types: [opened, synchronize, reopened] jobs: lint-dart: @@ -15,7 +15,7 @@ jobs: uses: flutter-actions/setup-flutter@v4 with: channel: stable - version: '3.38.8' + version: "3.41.6" cache: true cache-sdk: true cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }} @@ -53,7 +53,7 @@ jobs: name: dart-coverage-${{ github.run_id }} path: coverage/lcov.info retention-days: 1 - + coverage-comment: needs: lint-dart if: always() && github.event_name == 'pull_request' diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7f4d038..2f848c8 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -3,7 +3,7 @@ name: Publish to pub.dev on: push: tags: - - 'v[0-9]+.[0-9]+.[0-9]+' + - "v[0-9]+.[0-9]+.[0-9]+" jobs: prechecks: @@ -18,7 +18,7 @@ jobs: echo "Tag ${GITHUB_REF} does not match required format vX.Y.Z" exit 1 fi - + - name: Check main branch run: | git fetch origin main @@ -39,11 +39,10 @@ jobs: steps: - uses: actions/checkout@v6 - - uses: flutter-actions/setup-flutter@v4 with: channel: stable - version: 3.38.8 + version: 3.41.6 cache: true cache-sdk: true cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }} @@ -92,8 +91,8 @@ jobs: uses: ./.github/actions/changelog with: post-comment: false # Don't post comment for releases - exclude-types: 'chore,style' - comment-header: '## 📋 Release Notes' + exclude-types: "chore,style" + comment-header: "## 📋 Release Notes" - name: Determine if pre-release id: prerelease @@ -112,4 +111,4 @@ jobs: body: ${{ steps.changelog.outputs.changelog }} draft: false prerelease: ${{ steps.prerelease.outputs.prerelease }} - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }}