-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate dependency and image updates in GitHub Actions using Renovat…
…e Bot Add functionality to automate updates in GitHub Actions: • Pins and bumps all dependencies, aka `action/checkout`. • Updates the `EC` image in `action.yaml` to use the newest digest snapshot from quay.io. • Updates 'check.yaml' to use the latest SHA for the golden-image from GHCR. Golden-image is updated using a regex match, as it's not technically a dependency. Additional Renovate Bot settings: • Schedule: Before 10pm (America/New_York) • Auto-merge enabled • Custom manager for checks.yaml to update golden-image using Docker datasource. resloves: EC-205 signed-off-by: Sean Conroy [email protected]
- Loading branch information
1 parent
bb370fb
commit cff078d
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["config:base"], | ||
"timezone": "America/New_York", | ||
"schedule": ["before 10pm"], | ||
"automerge": true, | ||
"automergeType": "pr", | ||
"platformAutomerge": true, | ||
"pinDigests": true, | ||
"customManagers": [ | ||
{ | ||
"fileMatch": ["^\\.github/workflows/checks.yaml$"], | ||
"matchStrings": ["image:\\s+(?<depName>ghcr\\.io/.*?):(?<currentValue>.*?)@(?<currentDigest>.*?)\\s"], | ||
"datasourceTemplate": "docker" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters