Skip to content

Commit

Permalink
adding in a couple of workflows to check dependencies (#495)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuafernandes authored Oct 30, 2023
1 parent 3e9bd7a commit 98c0f3e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 'Dependency Review'

version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "sunday"
assignees:
- "protocol-galileo"
18 changes: 18 additions & 0 deletions .github/workflows/dependency_review.yml
Original file line number Diff line number Diff line change
@@ -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:
fail-on-severity: high
deny-licenses: LGPL-2.0, BSD-2-Clause

1 comment on commit 98c0f3e

@vercel
Copy link

@vercel vercel bot commented on 98c0f3e Oct 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

doc-teku – ./

doc-teku-infura-web.vercel.app
doc-teku-git-main-infura-web.vercel.app
docs.teku.consensys.net

Please sign in to comment.