-
Notifications
You must be signed in to change notification settings - Fork 1
276 lines (265 loc) · 11.5 KB
/
renovate.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
---
name: Renovate
on:
schedule:
- cron: '0 * * * *'
workflow_call:
inputs:
autodiscover:
description: Autodiscover all repositories.
required: false
type: boolean
default: true
branch:
description: Run Renovate on this branch.
required: false
type: string
cache:
description: Enable the Renovate cache.
required: false
type: boolean
default: true
dry_run:
description: Perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.
required: false
type: boolean
default: true
log_level:
description: Set the log level.
required: false
type: string
default: 'debug'
print_config:
description: Log the fully-resolved Renovate config for each repository, plus fully-resolved presets.
required: false
type: boolean
default: false
renovate_git_author:
description: Set the Git author name and email (used to set the `gitAuthor` Renovate configuration option).
required: false
type: string
renovate_username:
description: Set the Renovate username (used to set the `username` Renovate configuration option).
required: false
type: string
outputs:
docker-image:
description: The name of the Renovate Docker image
value: ${{ jobs.renovate.outputs.docker-image }}
renovate-version:
description: The Renovate version
value: ${{ jobs.renovate.outputs.renovate-version }}
secrets:
APPLICATION_ID:
description: GitHub App ID
required: true
APPLICATION_PRIVATE_KEY:
description: GitHub App private key
required: true
workflow_dispatch:
inputs:
autodiscover:
description: Autodiscover all repositories.
required: false
type: boolean
default: true
branch:
description: Run Renovate on this branch.
required: false
type: string
cache:
description: Enable the Renovate cache.
required: false
type: boolean
default: true
dry_run:
description: Perform a dry run by logging messages instead of creating/updating/deleting branches and PRs.
required: false
type: boolean
default: true
log_level:
description: Set the log level.
required: false
type: choice
default: 'debug'
options: ['trace', 'debug', 'info', 'warn', 'error', 'fatal']
print_config:
description: Log the fully-resolved Renovate config for each repository, plus fully-resolved presets.
required: false
type: boolean
default: false
concurrency:
group: '${{ github.repository }}-${{ github.workflow }}-$${{ github.ref }}'
cancel-in-progress: false
permissions: {}
env:
RENOVATE_VERSION: 36.96.8 # renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
outputs:
autodiscover: ${{ steps.configure.outputs.autodiscover }}
base-branches: ${{ steps.configure.outputs.base-branches }}
docker-image: ${{ steps.configure.outputs.docker-image }}
dry-run: ${{ steps.configure.outputs.dry-run }}
global-config: ${{ steps.configure.outputs.global-config }}
is-org-account: ${{ steps.configure.outputs.is-org-account }}
log-level: ${{ steps.configure.outputs.log-level }}
print-config: ${{ steps.configure.outputs.print-config }}
renovate-version: ${{ steps.configure.outputs.renovate-version }}
repositories: ${{ steps.configure.outputs.repositories }}
steps:
- name: Configure workflow run
id: configure
env:
autodiscover: ${{ inputs.autodiscover || contains(inputs.autodiscover, 'false') && 'false' || 'true' }}
dry_run: ${{ inputs.dry_run || contains(inputs.dry_run, 'false') && 'false' }}
# Check if this workflow was triggered from an organization account.
is-org-account: ${{ github.event.organization && 'true' || 'false' }}
log_level: ${{ inputs.log_level || 'debug' }}
print_config: ${{ inputs.print_config || 'false' }}
renovate_git_author: ${{ inputs.renovate_git_author || vars.RENOVATE_GIT_AUTHOR || '' }}
cache: ${{ inputs.cache && !inputs.dry_run && 'true' || github.event_name == 'schedule' && 'true' || 'false' }}
zzglobal_config: |-
{
allowedPostUpgradeCommands: [
'^(npx )?corepack enable$',
'^npm ci( --ignore-scripts)?$',
'^npm install -g (npm|pnpm)(?:@\\d+(?:\\.\\d+\\.\\d+)?)?$',
'^(npx|pnpm|yarn) prettier( --no-color)? --write \\.$',
'^(pnpm|yarn) install( --frozen-lockfile)?( --ignore-scripts)?$',
'^(pnpm|yarn) run (build|fix|format)$',
'^yarn install( --immutable)?( --immutable-cache)?$',
],
description: [
'Use the global config preset for the @bfra-me organization.',
'_See the [renovate workflow](https://github.com/bfra-me/renovate-config/blob/main/.github/workflows/renovate.yaml) for details._',
],
onboardingConfig: {
'$schema': 'https://docs.renovatebot.com/renovate-schema.json',
extends: ['github>bfra-me/renovate-config#v1.8.0'],
},
onboardingConfigFileName: '.github/renovate.json5',
onboardingPrTitle: 'feat(deps): configure Renovate',
onboardingRebaseCheckbox: true,
packageRules: [
{
matchPackagePatterns: ['*'],
rangeStrategy: 'pin',
},
{
matchDepTypes: ['engines', 'peerDependencies'],
rangeStrategy: 'update-lockfile',
},
],
}
# Use the contains function to convert the boolean input to a string and compare it to 'false'. This is
# required when the workflow is triggered from workflow_call because the github context is that of the workflow
# that called this workflow.
run: |
# Create outputs for this configuration
[[ -n "${{ inputs.branch }}" ]] && base_branches=$(jq 'split(",")' -Rc <(echo '${{ inputs.branch }}'))
sed 's/^[[:space:]]*//' <<EOF >> $GITHUB_OUTPUT
autodiscover=${{ env.autodiscover }}
base-branches=${base_branches}
docker-image=ghcr.io/renovatebot/renovate:${{ env.RENOVATE_VERSION }}
dry-run=${{ env.dry_run }}
enable-cache=${{ env.cache }}
global-config=$(echo "${zzglobal_config}" | tr -d '\n')
is-org-account=${{ env.is-org-account }}
log-level=${{ env.log_level }}
print-config=${{ env.print_config }}
renovate-git-author=${{ env.renovate_git_author }}
renovate-version=$(echo "${{ env.RENOVATE_VERSION }}")
repositories=${{ !fromJSON(env.autodiscover) && format('["{0}"]', github.repository) || '' }}
EOF
shell: bash
- name: Get Workflow Token
id: get_workflow_token
uses: peter-murray/workflow-application-token-action@8e1ba3bf1619726336414f1014e37f17fbadf1db # v2.1.0
with:
application_id: ${{ secrets.APPLICATION_ID }}
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}
organization: ${{ fromJSON(steps.configure.outputs.is-org-account) && github.repository_owner || '' }}
permissions: >
checks:write,
contents:write,
issues:write,
members:read,
metadata:read,
pull_requests:write,
statuses:write,
vulnerability_alerts:read,
workflows:write
- name: Configure Renovate cache
if: steps.configure.outputs.enable-cache == 'true'
shell: bash
run: |
echo "RENOVATE_CACHE_DIR=${RENOVATE_CACHE_DIR:-/tmp/renovate/cache}" >> $GITHUB_ENV
- id: renovate-cache
name: Cache Renovate
if: steps.configure.outputs.enable-cache == 'true'
env:
RENOVATE_CACHE_DIR: ${{ env.RENOVATE_CACHE_DIR }}
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
enableCrossOsArchive: true
path: ${{ env.RENOVATE_CACHE_DIR }}
key: >-
${{ github.repository_owner }}-renovate-cache-${{ steps.configure.outputs.renovate-version }}-${{ github.sha }}
- name: Workaround Renovate cache permissions
if: steps.configure.outputs.enable-cache == 'true'
continue-on-error: true
run: >
[ -d /tmp/renovate ] && sudo chown -R 1000 /tmp/renovate || true
- name: Renovate ${{ steps.configure.outputs.renovate-version }}
uses: renovatebot/github-action@3cef36a9aba515d8726b491905b3bc766832e221 # v39.0.5
env:
FORCE_COLOR: 3
LOG_LEVEL: ${{ steps.configure.outputs.log-level }}
RENOVATE_AUTODISCOVER: ${{ steps.configure.outputs.autodiscover }}
RENOVATE_BASE_BRANCHES: ${{ steps.configure.outputs.base-branches }}
RENOVATE_USE_BASE_BRANCH_CONFIG: ${{ steps.configure.outputs.base-branches && 'merge' || 'none' }}
RENOVATE_BRANCH_PREFIX_OLD: 'renovate-github/'
RENOVATE_CACHE_NPM_MINUTES: 30
RENOVATE_CONFIG: ${{ steps.configure.outputs.global-config }}
RENOVATE_DEPENDENCY_DASHBOARD_FOOTER: '\n- [ ] <!-- manual job -->Check here to trigger a Renovate run on this repository\n'
RENOVATE_DRY_RUN: ${{ fromJSON(steps.configure.outputs.dry-run) && 'full' || '' }}
RENOVATE_GIT_AUTHOR: ${{ steps.configure.outputs.renovate-git-author }}
RENOVATE_GIT_IGNORED_AUTHORS: |-
[
"29139614+renovate[bot]@users.noreply.github.com",
"${{ steps.configure.outputs.renovate-git-author }}"
]
RENOVATE_HOST_RULES: |-
[
{
"dnsCache": true
},
{
"hostType": "docker",
"matchHost": "ghcr.io",
"username": "${{ github.repository_owner }}",
"password": "${{ secrets.GITHUB_TOKEN }}"
}
]
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_PRINT_CONFIG: ${{ steps.configure.outputs.print-config }}
RENOVATE_REPOSITORIES: ${{ steps.configure.outputs.repositories }}
RENOVATE_REPOSITORY_CACHE: ${{ steps.configure.outputs.enable-cache == 'true' && 'enabled' || 'disabled' }}
RENOVATE_USERNAME: ${{ inputs.renovate_username || vars.RENOVATE_USERNAME || '' }}
with:
env-regex: '^(?:CI|FORCE_COLOR|GITHUB_(?:(?!PATH|ENV).)+|(?:HTTPS?|NO)_PROXY|(?:https?|no)_proxy|LOG_LEVEL|NODE_OPTIONS|RENOVATE_\w+|RUNNER_\w+)$'
mount-docker-socket: true
renovate-version: ${{ env.RENOVATE_VERSION }}
token: 'x-access-token:${{ steps.get_workflow_token.outputs.token }}'
- name: Restore Renovate cache permissions
if: always() && steps.configure.outputs.enable-cache == 'true'
continue-on-error: true
run: >
[ -d /tmp/renovate ] && sudo chown -R $(whoami) /tmp/renovate