From f5e48cf36ceaf0590b2929bae1cebd725a5d97bb Mon Sep 17 00:00:00 2001 From: m-ringler <42344272+m-ringler@users.noreply.github.com> Date: Thu, 23 Nov 2023 13:27:03 +0100 Subject: [PATCH] Add dependency review workflow (#34) * Add dependency review workflow * Clarify comment --- .github/workflows/dependency-review.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dependency-review.yaml diff --git a/.github/workflows/dependency-review.yaml b/.github/workflows/dependency-review.yaml new file mode 100644 index 0000000..e293657 --- /dev/null +++ b/.github/workflows/dependency-review.yaml @@ -0,0 +1,18 @@ +--- +name: 'Dependency Review' +on: [pull_request] + +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@v3 + with: + # Add more licenses as required. Do not add copy-left licenses or licenses incompatible with MIT (for czicompress) and GPL-3.0-or-later (for czishrink) + allow-licenses: MIT, MIT-0, Apache-2.0, BSD-2-Clause, BSD-3-Clause