-
Notifications
You must be signed in to change notification settings - Fork 8
fix: Pin the system test containers #1144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| "customManagers": [ | ||
| { | ||
| "customType": "regex", | ||
| "fileMatch": [ | ||
| "^\\.github/workflows/[^/]+\\.ya?ml$" | ||
| ], | ||
| "matchStringsStrategy": "combination", | ||
| "matchStrings": [ | ||
| "uses: actions/checkout@v*\\s", | ||
| "repository: (?<depName>.*?)\\s", | ||
| "ref: (?<currentValue>.*?)\\s" | ||
| ], | ||
| "datasourceTemplate": "github-tags" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I might be worth looking for a fileMatch of Dockerfile to ignore creating this type of PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe our Dockerfiles will stop having ARG of python version once we're using uv, which means we can then pin to the version of python we actually use for our build and the spurious PRs will be much reduced (along with uv better control of dependencies)
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1144 +/- ##
=======================================
Coverage 94.49% 94.49%
=======================================
Files 41 41
Lines 2544 2544
=======================================
Hits 2404 2404
Misses 140 140 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
The example-services compose-file that we for our system tests is adjusting the ports that it uses. As we are tracking main of that repository we need to pin this dependency, allowing the ports to be adjusted for the next release.
With Renovate we should be able to keep the dependency pinned and use the latest releases, which will require an adjustment to the ports when the release is made.