mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-01 19:58:15 +00:00
Our workflows use old GitHub Actions. For example, we use
`actions/checkout@v3` but `actions/checkout@v5` is the latest version:
599847236c/.github/workflows/build.yml (L33)
https://github.com/actions/checkout/releases
How about enabling Dependabot? If we enable Dependabot, Dependabot
opens PRs that update old GitHub Actions.
Dependabot document:
https://docs.github.com/en/code-security/dependabot
Dependabot configuration document:
https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
7 lines
118 B
YAML
7 lines
118 B
YAML
version: 2
|
|
updates:
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|