We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec8efc commit 0ef7e8eCopy full SHA for 0ef7e8e
.github/dependabot.yml
@@ -0,0 +1,9 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "maven"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
7
+ ignore:
8
+ - dependency-name: "*"
9
+ update-types: ["version-update:semver-major"]
.github/workflows/dependency-review.yml
@@ -0,0 +1,16 @@
+name: 'Dependency Review'
+on: [pull_request]
+
+permissions:
+ contents: read
+jobs:
+ dependency-review:
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: 'Checkout Repository'
12
+ uses: actions/checkout@v4
13
+ - name: Dependency Review
14
+ uses: actions/dependency-review-action@v3
15
+ with:
16
+ fail-on-severity: high
0 commit comments