diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11cc44a4..c93f0b36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,15 @@ jobs: - uses: actions/checkout@v3 - name: Run Clippy run: cargo clippy --workspace + cargo_audit: + name: cargo audit + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions-rs/audit-check@v1.2.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} test: name: cargo test strategy: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index b918992f..6ed1cda1 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -60,13 +60,3 @@ jobs: with: api-key: ${{ secrets.FOSSA_API_KEY }} run-tests: true - - cargo_audit: - name: cargo audit - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/audit-check@v1.2.0 - with: - token: ${{ secrets.GITHUB_TOKEN }}