Skip to content

Commit 7cd3398

Browse files
committed
Merge branch 'main' into develop
2 parents 38e53b7 + 2f7f89f commit 7cd3398

File tree

11 files changed

+56
-56
lines changed

11 files changed

+56
-56
lines changed

.github/workflows/check-pubdev-and-notify.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Wait for pub.dev processing
2626
if: github.event_name == 'workflow_run'
@@ -29,7 +29,7 @@ jobs:
2929
sleep 120
3030
3131
- name: Setup Python
32-
uses: actions/setup-python@v5
32+
uses: actions/setup-python@v6
3333
with:
3434
python-version: "3.9"
3535

.github/workflows/codecov.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
working-directory: packages/stadata_flutter_sdk
2323
steps:
2424
- name: 📚 Git Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
- name: 🐦 Setup Flutter
2727
uses: subosito/flutter-action@v2
2828
with:

.github/workflows/create-release-with-apk.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0
2121

@@ -30,7 +30,7 @@ jobs:
3030
echo "Found version: $VERSION from tag: $TAG"
3131
3232
- name: Setup Java
33-
uses: actions/setup-java@v4
33+
uses: actions/setup-java@v5
3434
with:
3535
distribution: 'zulu'
3636
java-version: '17'

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
working-directory: docs
1919
steps:
2020
- name: 📚 Git Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: 📦 Setup Node
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v5
2424
with:
2525
node-version: 18
2626
cache: yarn

.github/workflows/generate-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
pull-requests: write
3434
steps:
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
fetch-depth: 0 # Fetch full history for changelog generation
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Setup Python
42-
uses: actions/setup-python@v5
42+
uses: actions/setup-python@v6
4343
with:
4444
python-version: "3.9"
4545

.github/workflows/notify-discord-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.9"
3232

.github/workflows/notify-discord-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.9"
3232

.github/workflows/test-deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
working-directory: docs
1717
steps:
1818
- name: 📚 Git Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: 📦 Setup Node
21-
uses: actions/setup-node@v4
21+
uses: actions/setup-node@v5
2222
with:
2323
node-version: 18
2424
cache: yarn

app/example/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ dependencies:
1111
cupertino_icons: ^1.0.8
1212
drop_shadow: ^0.1.0
1313
easy_debounce: ^2.0.3
14-
envied: ^1.1.1
14+
envied: ^1.2.1
1515
extended_image: ^10.0.1
1616
flutter:
1717
sdk: flutter
1818
flutter_html: ^3.0.0
1919
flutter_screenutil: ^5.9.3
2020
flutter_switch: ^0.3.2
21-
flutter_widget_from_html: ^0.17.0
21+
flutter_widget_from_html: ^0.17.1
2222
get: ^4.7.2
2323
html_unescape: ^2.0.0
2424
intl: ^0.20.2
@@ -30,8 +30,8 @@ dependencies:
3030
path: ../../packages/stadata_flutter_sdk
3131

3232
dev_dependencies:
33-
build_runner: ^2.5.4
34-
envied_generator: ^1.1.1
33+
build_runner: ^2.7.1
34+
envied_generator: ^1.2.1
3535
flutter_lints: ^6.0.0
3636
flutter_test:
3737
sdk: flutter

pubspec.lock

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)