From 7869c4d0c896a4ea3903c4df3bffcb0b18aaf6e8 Mon Sep 17 00:00:00 2001 From: osa22 Date: Thu, 21 Mar 2024 18:14:55 -0400 Subject: [PATCH] Update ignore section of with example for github-actions : configuration-options-for-the-dependabot.yml-file.md (#32149) Co-authored-by: Vanessa --- .../configuration-options-for-the-dependabot.yml-file.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md b/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md index 7b8333302a8d..211f5fd91b23 100644 --- a/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md +++ b/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md @@ -418,6 +418,14 @@ updates: # For AWS SDK, ignore all patch updates for version updates only - dependency-name: "aws-sdk" update-types: ["version-update:semver-patch"] + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: 'weekly' + ignore: + - dependency-name: 'actions/checkout' + # For GitHub Actions, ignore all updates greater than or equal to version 3 + versions: '>= 3' ``` {% note %}