chore: Add Renovate config and pin GitHub Action versions to full semver#387
Open
jsonbailey wants to merge 2 commits into
Open
chore: Add Renovate config and pin GitHub Action versions to full semver#387jsonbailey wants to merge 2 commits into
jsonbailey wants to merge 2 commits into
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 143f31b. Configure here.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
jsonbailey
commented
Jun 1, 2026
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v4.3.1 |
Contributor
Author
There was a problem hiding this comment.
I am adding the full semver in the hopes that when renovate runs and converts these to a SHA, it will include the full semver in the comment.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
.github/renovate.jsonto enable Renovate withpinGitHubActionDigests(matching the pattern used injs-coreandlearn-release-please)@v4GitHub Action references to their latest full semver patch versions so Renovate can track them with SHA pinning and version comments:actions/checkout@v4→v4.3.1actions/upload-artifact@v4→v4.6.2actions/attest@v4→v4.1.0googleapis/release-please-actionwas already SHA-pinned with a version comment — no change neededOnce the terraform PR (adding this repo to the Renovate app installation) merges and applies, Renovate will open a PR replacing these full semver tags with SHA digests plus version comments.
Test plan
renovate.jsonis valid JSON and matches the expected shape@v4(without patch version) references remain in workflow files🤖 Generated with Claude Code
Note
Low Risk
Only CI configuration and third-party action version pins change; no application runtime, auth, or data-path code is touched.
Overview
Introduces Renovate via
.github/renovate.json(recommended preset,pinGitHubActionDigests, and OSV/vulnerability alerts) so dependency and GitHub Action updates can be automated like other LaunchDarkly repos.Across CI, build, publish, and release workflows, floating
@v4tags foractions/checkout,actions/upload-artifact, andactions/attestare replaced with explicit patch versions (v4.3.1,v4.6.2,v4.1.0) as a stepping stone before Renovate can pin them to commit SHAs with version comments.Reviewed by Cursor Bugbot for commit e4f8125. Bugbot is set up for automated code reviews on this repo. Configure here.