summaryrefslogtreecommitdiffstats
path: root/.github/workflows/detect.yml
blob: c4b7413d3b6769cdb7cd8b7c7995b6460d7d419a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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