remove deprecated scan-dependencies.yml workflow

This commit is contained in:
Alexandru Geana 2022-05-02 11:51:08 +02:00
parent 23d4c8597b
commit 14be78c6f5
No known key found for this signature in database
GPG Key ID: 7B02578FC8E45306

View File

@ -1,28 +0,0 @@
name: Scan Dependencies
on:
schedule:
- cron: 25 12 * * *
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
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'