From 08258693196e60d35aa620255bdb3f177a002376 Mon Sep 17 00:00:00 2001 From: edeleon Date: Wed, 20 Nov 2024 15:53:13 -0800 Subject: [PATCH 1/2] remove unrecognized configuration and fix typo --- .github/workflows/dependency-submission.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/dependency-submission.yml b/.github/workflows/dependency-submission.yml index 099f035..eb1b51b 100644 --- a/.github/workflows/dependency-submission.yml +++ b/.github/workflows/dependency-submission.yml @@ -4,9 +4,6 @@ # # Purpose: It generates and submits a dependency graph to the GitHub Dependency Submission API. The graph is used to # trigger Dependabot Alerts for vulnerable dependencies, and to populate the Dependency Graph insights view in GitHub. -# -# Excludes: -# - Test-only dependencies name: Dependency Submission @@ -31,7 +28,6 @@ jobs: - name: Generate and submit dependency graph uses: gradle/actions/dependency-submission@d156388eb19639ec20ade50009f3d199ce1e2808 # pin@v4 with: - dependency-graph-exclude-configurations: '.*[Tt]est(Compile|Runtime)Classpath' build-scan-publish: true - build-scan-terms-of-use-url: "https://gralde.com/help/legal-terms-of-use" + build-scan-terms-of-use-url: "https://gradle.com/help/legal-terms-of-use" build-scan-terms-of-use-agree: "yes" From 09a6b5122b913b75b7b2e898afacd7ff2ff5751d Mon Sep 17 00:00:00 2001 From: edeleon Date: Wed, 20 Nov 2024 15:53:37 -0800 Subject: [PATCH 2/2] add dependabot.yml for scanning config --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d77911f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Dependabot Configuration +# +# This configuration file specifies the settings for Dependabot Scanning. +# It monitors the Gradle dependencies and runs checks +# on a weekly basis. This will only provide vulnerability alerts and will not create +# pull requests for version updates. + +version: 2 +updates: + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 0 \ No newline at end of file