2022-09-08 08:40:58 +02:00
|
|
|
---
|
2022-04-27 05:02:54 +02:00
|
|
|
name: 'Dependency Review'
|
2022-09-08 08:40:58 +02:00
|
|
|
"on":
|
|
|
|
pull_request:
|
2022-04-27 05:02:54 +02:00
|
|
|
|
|
|
|
# https://github.com/actions/dependency-review-action
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-11-13 23:57:05 +01:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2022-04-27 05:02:54 +02:00
|
|
|
jobs:
|
|
|
|
dependency-review:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: 'Checkout Repository'
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: 'Dependency Review'
|
2022-11-13 23:58:47 +01:00
|
|
|
uses: actions/dependency-review-action@v3
|