This commit is contained in:
Dain Nilsson 2021-11-29 14:08:35 +01:00
commit c1e3287736
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
3 changed files with 32 additions and 4 deletions

28
.github/workflows/scan-dependencies.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Scan Dependencies
on:
schedule:
- cron: 25 12 * * *
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
with:
channel: 'beta'
- name: enabling linux desktop support
run: flutter config --enable-linux-desktop
- name: Check direct dependencies
run: |
flutter pub outdated | grep 'direct dependencies: all up-to-date'
- name: Check dev_dependencies
run: |
flutter pub outdated | grep 'dev_dependencies: all up-to-date'

View File

@ -225,14 +225,14 @@ packages:
name: freezed
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.1+1"
version: "1.0.0"
freezed_annotation:
dependency: "direct main"
description:
name: freezed_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.0"
version: "1.0.0"
frontend_server_client:
dependency: transitive
description:

View File

@ -40,7 +40,7 @@ dependencies:
shared_preferences: ^2.0.8
flutter_riverpod: ^1.0.0
json_annotation: ^4.3.0
freezed_annotation: ^0.15.0
freezed_annotation: ^1.0.0
dev_dependencies:
flutter_test:
@ -54,7 +54,7 @@ dev_dependencies:
flutter_lints: ^1.0.0
build_runner: ^2.1.4
freezed: ^0.15.0
freezed: ^1.0.0
json_serializable: ^6.0.0