Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
container:
env:
LOG_LEVEL: debug
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^git", "^pip", "^copier", "^find"]'
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^git", "^pip", "^copier", "^find", "^apt"]'
RENOVATE_BRANCH_PREFIX: renovate-github/
RENOVATE_ENABLED: ${{ vars.RENOVATE_ENABLED || true }}
RENOVATE_ENABLED_MANAGERS: '["pep621", "github-actions", "regex", "pre-commit"]'
RENOVATE_OPTIMIZE_FOR_DISABLED: 'true'
RENOVATE_PLATFORM: github
RENOVATE_REPOSITORIES: '["${{ github.repository }}"]'
RENOVATE_REPOSITORY_CACHE: enabled
image: ghcr.io/renovatebot/renovate:38.110.2@sha256:06665449c11c61011319ef8f1cd6e00a265d2692e84586f964ba368d4f67591d
image: ghcr.io/renovatebot/renovate:39.42.4@sha256:c5d718e312cdacc0746e37f13c215ff498be28c51e50efd24c070ae29f5b636a
options: --user root
runs-on: ubuntu-22.04
steps:
Expand Down
14 changes: 8 additions & 6 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":enablePreCommit",
":maintainLockFilesWeekly"
":enablePreCommit"
],
"automergeType": "pr",
"automergeStrategy": "merge-commit",
Expand Down Expand Up @@ -38,16 +37,18 @@
{
"commitMessageTopic": "serious-scaffold",
"matchDepTypes": [
"copier-template"
"ss-template"
],
"postUpgradeTasks": {
"commands": [
"git stash",
"pip install copier==9.3.1",
"apt update",
"apt install python3-pip -y",
"pip install copier==9.4.1 --break-system-packages",
"copier update --defaults --vcs-ref {{{newVersion}}}"
]
},
"semanticCommitScope": "copier-template"
"semanticCommitScope": "ss-template"
},
{
"description": "Group apt packages to avoid failure when multiple packages are outdated.",
Expand Down Expand Up @@ -99,10 +100,11 @@
]
},
{
"description": "Update ss template from serious-scaffold",
"customType": "regex",
"datasourceTemplate": "git-tags",
"depNameTemplate": "https://github.com/serious-scaffold/ss-cpp.git",
"depTypeTemplate": "copier-template",
"depTypeTemplate": "ss-template",
"fileMatch": [
"^\\.copier-answers\\.yml$"
],
Expand Down
Loading