Merge branch 'main' into docs/fix-broken-links

This commit is contained in:
Michael Kriese 2021-08-23 10:13:38 +02:00 committed by GitHub
commit 8db1e22402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 5601 additions and 30 deletions

24
.github/renovate.json vendored
View file

@ -1,15 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>renovatebot/presets-internal:node", ":pinDependencies"],
"major": {
"stabilityDays": 3
},
"extends": ["github>renovatebot/.github", ":pinDependencies"],
"packageRules": [
{
"description": "Automerge Renovate updates",
"packageNames": ["renovate/renovate"],
"updateTypes": ["major", "minor", "patch"],
"semanticCommitType": "fix"
},
{
"description": "Update references in markdown files weekly",
"matchPaths": [".md"],
"extends": ["schedule:weekly"],
"automerge": true,
"stabilityDays": 0,
"commitMessageTopic": "references to {{{depName}}}",
"semanticCommitType": "docs",
"semanticCommitScope": null,
"additionalBranchPrefix": "docs-"
}
],
"regexManagers": [
@ -19,6 +27,14 @@
"// renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?<currentValue>.+?)';"
],
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
},
{
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"uses: renovatebot/github-action@(?<currentValue>[^\\s]+)"
],
"depNameTemplate": "renovatebot/github-action",
"datasourceTemplate": "github-releases"
}
]
}

View file

@ -53,7 +53,7 @@ jobs:
LOG_LEVEL: debug
with:
configurationFile: ${{ matrix.configurationFile }}
token: ${{ secrets.RENOVATE_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
build:
needs: [lint, commitlint, e2e]

View file

@ -76,7 +76,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v21.30.0
uses: renovatebot/github-action@v21.33.15
with:
configurationFile: example/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
@ -124,7 +124,7 @@ jobs:
uses: actions/checkout@v2.0.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v21.30.0
uses: renovatebot/github-action@v21.33.15
with:
configurationFile: example/renovate-config.js
token: 'x-access-token:${{ steps.get_token.outputs.app_token }}'
@ -139,7 +139,7 @@ To enable debug logging, add the environment variable `LOG_LEVEL: 'debug'` to th
```yml
- name: Self-hosted Renovate
uses: renovatebot/github-action@v21.30.0
uses: renovatebot/github-action@v21.33.15
with:
configurationFile: example/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}

View file

@ -1,6 +1,7 @@
module.exports = {
branchPrefix: 'test-renovate/',
dryRun: true,
username: 'renovate-release',
gitAuthor: 'Renovate Bot <bot@renovateapp.com>',
onboarding: false,
platform: 'github',

View file

@ -1,6 +1,7 @@
{
"branchPrefix": "test-renovate/",
"dryRun": true,
"username": "renovate-release",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"onboarding": false,
"platform": "github",

5595
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
class Docker {
readonly repository = 'renovate/renovate';
// renovate: datasource=docker depName=renovate/renovate versioning=docker
readonly tag = '26.4.1-slim';
readonly tag = '26.4.2-slim';
readonly tagSuffix = '-slim';
image(): string {