blob: 1cdec3b21b1d7297dd5e6f765fe78de53ae2bb92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# From:
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every weekday
interval: "daily"
|