Skip to content

Commit 34a0e05

Browse files
committed
fix: CI updated to 3.41.6
1 parent 5e9e34b commit 34a0e05

2 files changed

Lines changed: 10 additions & 11 deletions

File tree

.github/workflows/checks.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: "Checks"
22

33
on:
44
pull_request:
5-
branches: [ main ]
6-
types: [ opened, synchronize, reopened ]
5+
branches: [main]
6+
types: [opened, synchronize, reopened]
77

88
jobs:
99
lint-dart:
@@ -15,7 +15,7 @@ jobs:
1515
uses: flutter-actions/setup-flutter@v4
1616
with:
1717
channel: stable
18-
version: '3.38.8'
18+
version: "3.41.6"
1919
cache: true
2020
cache-sdk: true
2121
cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }}
@@ -53,7 +53,7 @@ jobs:
5353
name: dart-coverage-${{ github.run_id }}
5454
path: coverage/lcov.info
5555
retention-days: 1
56-
56+
5757
coverage-comment:
5858
needs: lint-dart
5959
if: always() && github.event_name == 'pull_request'

.github/workflows/publish.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish to pub.dev
33
on:
44
push:
55
tags:
6-
- 'v[0-9]+.[0-9]+.[0-9]+'
6+
- "v[0-9]+.[0-9]+.[0-9]+"
77

88
jobs:
99
prechecks:
@@ -18,7 +18,7 @@ jobs:
1818
echo "Tag ${GITHUB_REF} does not match required format vX.Y.Z"
1919
exit 1
2020
fi
21-
21+
2222
- name: Check main branch
2323
run: |
2424
git fetch origin main
@@ -39,11 +39,10 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v6
4141

42-
4342
- uses: flutter-actions/setup-flutter@v4
4443
with:
4544
channel: stable
46-
version: 3.38.8
45+
version: 3.41.6
4746
cache: true
4847
cache-sdk: true
4948
cache-key: ${{ runner.os }}-flutter-${{ hashFiles('pubspec.yaml') }}
@@ -92,8 +91,8 @@ jobs:
9291
uses: ./.github/actions/changelog
9392
with:
9493
post-comment: false # Don't post comment for releases
95-
exclude-types: 'chore,style'
96-
comment-header: '## 📋 Release Notes'
94+
exclude-types: "chore,style"
95+
comment-header: "## 📋 Release Notes"
9796

9897
- name: Determine if pre-release
9998
id: prerelease
@@ -112,4 +111,4 @@ jobs:
112111
body: ${{ steps.changelog.outputs.changelog }}
113112
draft: false
114113
prerelease: ${{ steps.prerelease.outputs.prerelease }}
115-
token: ${{ secrets.GITHUB_TOKEN }}
114+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)