test: run upgrade test every time#2048
Merged
AndrewChubatiuk merged 2 commits intomasterfrom Apr 9, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
1 issue found across 6 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name=".github/workflows/operatorhub.yaml">
<violation number="1" location=".github/workflows/operatorhub.yaml:63">
P1: Installing `opm` into `/usr/local/bin` without `sudo` can fail with permission denied on GitHub runners, breaking the release workflow.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review, or fix all with cubic.
Comment on lines
+63
to
+64
| curl -sL https://github.com/operator-framework/operator-registry/releases/download/v1.65.0/linux-amd64-opm -o /usr/local/bin/opm | ||
| chmod +x /usr/local/bin/opm |
Contributor
There was a problem hiding this comment.
P1: Installing opm into /usr/local/bin without sudo can fail with permission denied on GitHub runners, breaking the release workflow.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/operatorhub.yaml, line 63:
<comment>Installing `opm` into `/usr/local/bin` without `sudo` can fail with permission denied on GitHub runners, breaking the release workflow.</comment>
<file context>
@@ -48,58 +48,58 @@ jobs:
+ - name: Install opm
+ run: |
+ curl -sL https://github.com/operator-framework/operator-registry/releases/download/v1.65.0/linux-amd64-opm -o /usr/local/bin/opm
+ chmod +x /usr/local/bin/opm
+
</file context>
Suggested change
| curl -sL https://github.com/operator-framework/operator-registry/releases/download/v1.65.0/linux-amd64-opm -o /usr/local/bin/opm | |
| chmod +x /usr/local/bin/opm | |
| sudo curl -fsSL https://github.com/operator-framework/operator-registry/releases/download/v1.65.0/linux-amd64-opm -o /usr/local/bin/opm | |
| sudo chmod +x /usr/local/bin/opm |
1e35fbf to
84daf51
Compare
AndrewChubatiuk
approved these changes
Apr 9, 2026
96d92a3 to
a04676e
Compare
vrutkovs
added a commit
that referenced
this pull request
Apr 17, 2026
* test: run upgrade test every time * reuse e2e target --------- Co-authored-by: Andrii Chubatiuk <andrew.chubatiuk@gmail.com>
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.
I think recent version bump on master is making upgrade tests fail and we noticed this too late