-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Integrate renovate bot for all dependency updates #37050
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
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
b1a7510
Replace dependabot with renovate for GitHub Actions updates
silverwind a0b98c6
Add cron-renovate workflow with GitHub App token auth
silverwind c72863f
Apply suggestion from @silverwind
silverwind 38d626a
Add explicit branchPrefix to renovate config
silverwind 31e1c22
Add permissions to cron-renovate workflow
silverwind 21af37e
Add comment explaining fork guard condition
silverwind 66e1b46
Add comment explaining repository scope
silverwind be28ab8
Rename renovate.json to renovate.json5
silverwind b35ee42
Add explicit configurationFile to renovate workflow
silverwind bb1d42c
Merge branch 'main' into renovate
silverwind 3bebfa1
Cover go and npm, switch to PAT auth, weekly schedule
silverwind fc66bd3
Use existing label, lowercase group names
silverwind b636262
Run daily, gate routine PRs to Mondays via renovate schedule
silverwind a9d4df6
Pin renovatebot/github-action to v46.1.10
silverwind 55b84ca
Drop platformCommit, SHA-pin renovatebot/github-action
silverwind 0ba05c9
Apply suggestion from @silverwind
silverwind 657d532
Apply suggestion from @silverwind
silverwind 6f4ab26
add go-gitea/gitea as renovate target
TheFox0x7 d7bd42e
Fix comment typo, add workflow concurrency and timeout
silverwind be25801
Pin all GitHub Actions to commit SHAs
silverwind c20ff69
Move npm pins into renovate.json5, drop updates.config.ts
silverwind 3c0fb08
update updates
silverwind 4ad4305
Bump updates to 17.16.2
silverwind 5a461b8
Pin gomod replace directives in renovate config
silverwind 501df7d
Bump updates to 17.16.3
silverwind e637873
Cover pyproject.toml dependencies via pep621 (uv-compatible)
silverwind ac034e1
Cover Nix flake via renovate, drop cron-flake-updater workflow
silverwind 1b985c8
Lower release-age cooldown to 3 days
silverwind 5d02fe8
Use patch-level version comments for SHA-pinned actions
silverwind aa8976f
Pin Renovate runtime image to 43.141.5
silverwind a741b0d
Track Makefile go-tool packages via renovate
silverwind 7815a9b
Same-line renovate annotations, derive Go module from path
silverwind 3e06cc5
Restore release-age cooldown to 5 days
silverwind 5c0cb1e
Merge branch 'main' into renovate
bircni 0132ab4
Merge remote-tracking branch 'origin/main' into renovate
silverwind 90d5eb1
fix warnings during run
TheFox0x7 84efb4d
move global configuration to env vars
TheFox0x7 f4e9afa
Merge branch 'main' into renovate
bircni 57f250a
Merge branch 'main' into renovate
GiteaBot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| name: cron-renovate | ||
|
|
||
| on: | ||
| schedule: | ||
| - cron: "0 1 * * *" # daily at 01:00 UTC | ||
| workflow_dispatch: | ||
|
|
||
| concurrency: | ||
| group: cron-renovate | ||
|
|
||
| env: | ||
| RENOVATE_VERSION: 43.141.5 # renovate: datasource=docker depName=ghcr.io/renovatebot/renovate | ||
|
|
||
| jobs: | ||
| cron-renovate: | ||
| runs-on: ubuntu-latest | ||
| if: github.repository == 'go-gitea/gitea' # prevent running on forks | ||
| timeout-minutes: 30 | ||
| permissions: | ||
| contents: read | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - uses: renovatebot/github-action@83ec54fee49ab67d9cd201084c1ff325b4b462e4 # v46.1.10 | ||
| with: | ||
| renovate-version: ${{ env.RENOVATE_VERSION }} | ||
| configurationFile: renovate.json5 | ||
| token: ${{ secrets.RENOVATE_TOKEN }} | ||
| env: | ||
| RENOVATE_BINARY_SOURCE: install # auto-install go/node toolchains needed by post-upgrade tasks. | ||
| RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^make (tidy|svg)$"]' | ||
| RENOVATE_REPOSITORIES: '["go-gitea/gitea"]' | ||
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.