From ba4b6176f448afe1edc7ede5ca22355af76da7b3 Mon Sep 17 00:00:00 2001 From: Tobias Grothe Date: Tue, 7 Jan 2025 21:52:08 +0100 Subject: [PATCH] Add GitHub Actions workflow for dependency review - Introduce a new GitHub Actions workflow to perform dependency reviews on push and pull request events targeting the main branch. - Utilize the `actions/checkout@v4` action to check out the repository. - Use the `actions/dependency-review-action@v4` action to perform the dependency review. --- .github/workflows/dependency-review.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dependency-review.yml diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000..5db777e --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,19 @@ +name: 'Dependency review' + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout repository' + uses: actions/checkout@v4 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v4