Skip to content

Commit

Permalink
misc: add CI actions/dependency-review-action for security (#7168)
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Apr 13, 2022
1 parent ce08891 commit 6306cbc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/canary-release.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Publish Canary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # v3
with:
fetch-depth: 0 # Needed to get the commit number with "git rev-list --count HEAD"
- name: Set up Node
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/dependency-review.yml
@@ -0,0 +1,14 @@
name: 'Dependency Review'
on: [pull_request]

permissions:
contents: read

jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- name: 'Dependency Review'
uses: actions/dependency-review-action@3f943b86c9a289f4e632c632695e2e0898d9d67d # v1

0 comments on commit 6306cbc

Please sign in to comment.