Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 987 Bytes

use_dependabot_for_github_actions.md

File metadata and controls

23 lines (18 loc) · 987 Bytes

Use dependabot for GitHub Actions

You can get Dependabot to help you with keeping your GitHub Actions workflows up to date

# Basic dependabot.yml file 
# REF: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-actions-up-to-date-with-dependabot

version: 2
updates:
  # Enable version updates for GitHub Actions
  - package-ecosystem: "github-actions"
    # Look for `.github/workflows` in the `root` directory
    directory: "/"
    # Check for updates once a week
    schedule:
      interval: "weekly"

Resources and References