We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f468e25 commit 5c826feCopy full SHA for 5c826fe
1 file changed
.github/workflows/detect.yml
@@ -0,0 +1,16 @@
1
+name: Detect
2
+on:
3
+ push: {}
4
+ pull_request: {}
5
+ schedule:
6
+ - cron: '0 0 * * *'
7
+jobs:
8
+ outdated_dependencies:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: hecrj/setup-rust-action@v1
12
+ - name: Install cargo-outdated
13
+ run: cargo install cargo-outdated
14
+ - uses: actions/checkout@master
15
+ - name: Detect outdated dependencies
16
+ run: cargo outdated --exit-status 1
0 commit comments