mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-08-05 16:44:06 +02:00
6e5c6aa086
Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4 to 5. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
757 B
YAML
27 lines
757 B
YAML
name: Dependency Review
|
|
|
|
# This workflow is designed to be called by other workflows rather than triggered automatically
|
|
# This allows for more controlled execution and integration with other CI/CD processes
|
|
# To enable automatic execution on pull requests, uncomment the line below:
|
|
# on: [pull_request]
|
|
on: [workflow_call]
|
|
|
|
permissions:
|
|
contents: read
|
|
# Required to post security advisories
|
|
security-events: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
dependency-review:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Checkout Repository"
|
|
uses: actions/checkout@v6
|
|
|
|
- name: "Dependency Review"
|
|
uses: actions/dependency-review-action@v5
|
|
with:
|
|
fail-on-severity: moderate
|
|
comment-summary-in-pr: always
|