Skip to content

Commit

Permalink
Merge pull request #87 from route06/introduce-dependency-review-workflow
Browse files Browse the repository at this point in the history
Introduce Dependency Review workflow
  • Loading branch information
masutaka authored Oct 2, 2024
2 parents 9ee4a14 + 69bdd1f commit ab7f272
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dependency_review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ## Summary
#
# Run Dependency Review, which is GitHub Advanced Security a feature

# ## Usage
#
# name: Dependency Review
#
# on: [pull_request]
#
# jobs:
# dependency_review:
# uses: route06/actions/.github/workflows/dependency_review.yml@v2

# ## Reference
#
# https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review

name: Dependency Review

on:
workflow_call:

jobs:
dependency_review:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/dependency-review-action@v4
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ROUTE06内外から使われることを想定したGitHub ActionsのReusable Wo
* [codeql.yml](./.github/workflows/codeql.yml)
* [create_gh_discussion.yml](./.github/workflows/create_gh_discussion.yml)
* [create_gh_issue.yml](./.github/workflows/create_gh_issue.yml)
* [dependency_review.yml](./.github/workflows/dependency_review.yml)
* [get_last_discussion_url.yml](./.github/workflows/get_last_discussion_url.yml)
* [gh_discussion_comment_to_slack.yml](./.github/workflows/gh_discussion_comment_to_slack.yml)
* [notify_slack_on_ci_failed.yml](./.github/workflows/notify_slack_on_ci_failed.yml)
Expand Down

0 comments on commit ab7f272

Please sign in to comment.