diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 53f0e5b..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: build and test - -on: [push] - -jobs: - compliance: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Advance Security Policy as Code - uses: advanced-security/policy-as-code@v2.7.2 - with: - policy: it-at-m/policy-as-code - policy-path: default.yaml - token: ${{ secrets.GITHUB_TOKEN }} - argvs: "--disable-dependabot --disable-secret-scanning --disable-code-scanning --display" diff --git a/.github/workflows/dependency_review.yaml b/.github/workflows/dependency_review.yaml new file mode 100644 index 0000000..273bef7 --- /dev/null +++ b/.github/workflows/dependency_review.yaml @@ -0,0 +1,15 @@ +name: dependency-review + +on: + pull_request: + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Dependency Review + uses: actions/dependency-review-action@v4 + with: + config-file: it-at-m/.github/workflow-configs/dependency_review.yaml@main