From 0c64b426e1f5d3b90eb80b605e3f75e5e227932e Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Sat, 15 Nov 2025 14:33:23 -0800 Subject: [PATCH 1/2] Dependabot configuration to update actions in workflows --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..d95a8317c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + # Enable version updates for GitHub Actions + - package-ecosystem: "github-actions" + # Look for GitHub Actions workflows in the `root` directory + directory: "/" + # Check the for updates once a week + schedule: + interval: "weekly" From 73197176b531bdc70f6ef93804b393d1f40114a7 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Wed, 19 Nov 2025 19:42:20 -0800 Subject: [PATCH 2/2] Add gomod & license --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d95a8317c..5a224df37 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,3 +1,6 @@ +# Copyright 2025 NVIDIA CORPORATION +# SPDX-License-Identifier: Apache-2.0 + version: 2 updates: # Enable version updates for GitHub Actions @@ -7,3 +10,9 @@ updates: # Check the for updates once a week schedule: interval: "weekly" + # Enable version updates for Go modules + - package-ecosystem: "gomod" + # Look for Go modules in the `root` directory + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file