diff options
author | 2023-09-04 13:32:27 +0200 | |
---|---|---|
committer | 2023-09-04 13:41:21 +0200 | |
commit | 34876aea5ea698f342220e7b7c0bed33a42859d2 (patch) | |
tree | 1be16a24bb1366f8144e1a0fdec82c21257b2034 /.github | |
parent | f468e25d0c67a01ee79d892f6e8ba9be019f06c7 (diff) | |
download | iced-34876aea5ea698f342220e7b7c0bed33a42859d2.tar.gz iced-34876aea5ea698f342220e7b7c0bed33a42859d2.tar.bz2 iced-34876aea5ea698f342220e7b7c0bed33a42859d2.zip |
Add GitHub CI workflow to detect outdated dependencies
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/detect.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/detect.yml b/.github/workflows/detect.yml new file mode 100644 index 00000000..c4b7413d --- /dev/null +++ b/.github/workflows/detect.yml @@ -0,0 +1,16 @@ +name: Detect +on: + push: {} + pull_request: {} + schedule: + - cron: '0 0 * * *' +jobs: + outdated_dependencies: + runs-on: ubuntu-latest + steps: + - uses: hecrj/setup-rust-action@v1 + - name: Install cargo-outdated + run: cargo install cargo-outdated + - uses: actions/checkout@master + - name: Detect outdated dependencies + run: cargo outdated --exit-code 1 |