-
Notifications
You must be signed in to change notification settings - Fork 8
Disable renovate #1086
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
Disable renovate #1086
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,7 +45,7 @@ runs: | |
| using: 'composite' | ||
| steps: | ||
| - name: Install Descope CLI | ||
| uses: descope/descopecli/.github/actions/install@9163e884e1c1af93784b265a3dc048f4040b63ad # main | ||
| uses: descope/descopecli/.github/actions/install@main | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 MEDIUM: Same concern as |
||
| with: | ||
| version: ${{ inputs.descopecli_version }} | ||
|
|
||
|
|
||
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.
🟡 MEDIUM: Switching from a pinned SHA to
@mainfor the nestedinstallaction breaks reproducibility for downstream consumers.exportandimportare marketplace composite actions (note thebranding:block). When an external user pinsdescope/descopecli/.github/actions/export@<sha-or-tag>, the action.yml at that version will still resolveinstall@mainat runtime — so any change onmain(Go version bump, install logic change, or a malicious push) immediately affects every pinned consumer. The previous SHA-pin + Renovate pattern provided immutable refs and supply-chain hardening; disabling Renovate without keeping SHA pins removes both.If the goal is just to stop the Renovate PR churn, consider keeping the SHA pin and updating it manually on release, or pinning to a tag (e.g.
@v0.8.14) that moves on intentional cuts rather than everymaincommit.