From 6a8a48eee0d0449add98e0ae3380338bce142c59 Mon Sep 17 00:00:00 2001 From: Zongle Wang Date: Thu, 13 Jun 2024 08:56:50 +0800 Subject: [PATCH 1/4] Configure dependabot to check github-actions updates Some actions based on Node 16 are deprecated. See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6c718529ced..53138772171 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,11 @@ updates: schedule: interval: "daily" target-branch: "main" +- package-ecosystem: "github-actions" + directory: ".github" + schedule: + interval: "daily" + target-branch: "main" - package-ecosystem: "nuget" directory: "/src" schedule: From 4fe930d78c8f95ec0229d9da32ac1b72816bf981 Mon Sep 17 00:00:00 2001 From: Zongle Wang Date: Thu, 13 Jun 2024 09:08:01 +0800 Subject: [PATCH 2/4] Under /.github https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot#example-dependabotyml-file-for-github-actions --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 53138772171..a98bd884ff3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: interval: "daily" target-branch: "main" - package-ecosystem: "github-actions" - directory: ".github" + directory: "/.github" schedule: interval: "daily" target-branch: "main" From b155acf3bffc3467db05da12d581fb4d333a36b5 Mon Sep 17 00:00:00 2001 From: Zongle Wang Date: Thu, 13 Jun 2024 09:14:00 +0800 Subject: [PATCH 3/4] Try /.github/workflows --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a98bd884ff3..59b7e5f76f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: interval: "daily" target-branch: "main" - package-ecosystem: "github-actions" - directory: "/.github" + directory: "/.github/workflows" schedule: interval: "daily" target-branch: "main" From 172a5727226b885c85a3c6fd7451abccdbc7716a Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Tue, 12 Nov 2024 22:33:17 -0500 Subject: [PATCH 4/4] Update .github/dependabot.yml Co-authored-by: Zongle Wang --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 59b7e5f76f8..685264a75d2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,7 @@ updates: interval: "daily" target-branch: "main" - package-ecosystem: "github-actions" - directory: "/.github/workflows" + directory: "/" schedule: interval: "daily" target-branch: "main"