Compare commits
6 Commits
0.13.0
...
bb9979e7a0
| Author | SHA1 | Date | |
|---|---|---|---|
| bb9979e7a0 | |||
| 229212cb6e | |||
| 49996d1108 | |||
| 78ad0f0588 | |||
| f8788986cb | |||
| 444178a987 |
@@ -11,12 +11,12 @@ jobs:
|
|||||||
name: Release
|
name: Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Increment tag
|
- name: Increment tag
|
||||||
id: tag
|
id: tag
|
||||||
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@b8806ee0141a44be30e8734dff15001361be100c # 0.1.35
|
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@e393dbb067c09fd43519392572ccf63b66cba92d # 0.1.39
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
- "docker-compose.json"
|
- "docker-compose.json"
|
||||||
- "bun-npm.json"
|
- "bun-npm.json"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||||
- name: Validate "${{ matrix.json-file }}"
|
- name: Validate "${{ matrix.json-file }}"
|
||||||
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@6bf2c1355ac4430a6fb77befd36fb95243fcaa3a # 0.1.12
|
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@6bf2c1355ac4430a6fb77befd36fb95243fcaa3a # 0.1.12
|
||||||
with:
|
with:
|
||||||
|
|||||||
+5
-4
@@ -10,10 +10,11 @@
|
|||||||
"matchManagers": ["github-actions"],
|
"matchManagers": ["github-actions"],
|
||||||
"matchUpdateTypes": ["minor", "patch"],
|
"matchUpdateTypes": ["minor", "patch"],
|
||||||
"matchPackageNames": [
|
"matchPackageNames": [
|
||||||
"https://gitea.t000-n.de/t.behrendt/actions/*",
|
"t.behrendt/actions",
|
||||||
"https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment",
|
"t.behrendt/actions/*",
|
||||||
"https://gitea.t000-n.de/t.behrendt/k_deploy_workflows",
|
"t.behrendt/conventional-semantic-git-tag-increment",
|
||||||
"https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action",
|
"t.behrendt/k_deploy_workflows",
|
||||||
|
"t.behrendt/validate-json-by-json-schema-action",
|
||||||
|
|
||||||
"actions/checkout",
|
"actions/checkout",
|
||||||
"actions/cache",
|
"actions/cache",
|
||||||
|
|||||||
+24
-10
@@ -2,24 +2,38 @@
|
|||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"dependencyDashboard": true,
|
"dependencyDashboard": true,
|
||||||
"semanticCommits": "enabled",
|
"semanticCommits": "enabled",
|
||||||
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
|
"extends": [
|
||||||
|
"config:recommended",
|
||||||
|
"docker:pinDigests",
|
||||||
|
"helpers:pinGitHubActionDigests",
|
||||||
|
":configMigration",
|
||||||
|
":pinDevDependencies",
|
||||||
|
"abandonments:recommended",
|
||||||
|
":maintainLockFilesWeekly",
|
||||||
|
":semanticCommitTypeAll(chore)"
|
||||||
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "Don't update dependencies unless they are at least 7 days old",
|
"description": "Don't update dependencies unless they are at least 7 days old (except for internal deps).",
|
||||||
"matchPackageNames": ["*"],
|
"matchPackageNames": [
|
||||||
|
"!t.behrendt/**"
|
||||||
|
],
|
||||||
"minimumReleaseAge": "7 days",
|
"minimumReleaseAge": "7 days",
|
||||||
"minimumReleaseAgeBehaviour": "timestamp-required",
|
"minimumReleaseAgeBehaviour": "timestamp-required",
|
||||||
"internalChecksFilter": "strict"
|
"internalChecksFilter": "strict"
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Exempt local dependencies from the minimum release age (last rule wins over earlier packageRules for the same options)",
|
|
||||||
"matchPackageNames": ["/^(https:\\/\\/)?gitea\\.t000-n\\.de/"],
|
|
||||||
"minimumReleaseAge": "0 days",
|
|
||||||
"internalChecksFilter": "none"
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"osvVulnerabilityAlerts": true,
|
"osvVulnerabilityAlerts": true,
|
||||||
|
"dependencyDashboardOSVVulnerabilitySummary": "all",
|
||||||
"vulnerabilityAlerts": {
|
"vulnerabilityAlerts": {
|
||||||
"enabled": true
|
"enabled": true,
|
||||||
|
"automerge": true,
|
||||||
|
"platformAutomerge": true,
|
||||||
|
"automergeType": "pr",
|
||||||
|
"addLabels": [
|
||||||
|
"automerge",
|
||||||
|
"security"
|
||||||
|
],
|
||||||
|
"vulnerabilityFixStrategy": "lowest"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user