From c7cb3e92a60e73c3ef225282bb46eb25e2db9358 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 13 Feb 2024 10:05:02 -0600 Subject: [PATCH] dependabot: ignore actions/{cache,checkout} v3 The CentOS 7 build requires older GitHub actions, try to make dependabot ignore these older versions. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b10ccce16c..c063687ed1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,3 +12,8 @@ updates: interval: "daily" commit-message: prefix: "github-actions:" + ignore: + - dependency-name: "actions/cache" + versions: ["3.x"] + - dependency-name: "actions/checkout" + versions: ["3.x"]