Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bb9979e7a0 | |||
| 229212cb6e | |||
| 49996d1108 | |||
| 78ad0f0588 | |||
| f8788986cb | |||
| 444178a987 | |||
| 18683271ea | |||
| b4939f348d | |||
| 57c07b187f |
@@ -11,12 +11,12 @@ jobs:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Increment 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:
|
||||
token: ${{ secrets.GITEA_TOKEN }}
|
||||
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
|
||||
@@ -17,7 +17,7 @@ jobs:
|
||||
- "docker-compose.json"
|
||||
- "bun-npm.json"
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
||||
- name: Validate "${{ matrix.json-file }}"
|
||||
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@6bf2c1355ac4430a6fb77befd36fb95243fcaa3a # 0.1.12
|
||||
with:
|
||||
|
||||
+35
@@ -5,6 +5,41 @@
|
||||
{
|
||||
"matchManagers": ["github-actions"],
|
||||
"addLabels": ["deps", "action"]
|
||||
},
|
||||
{
|
||||
"matchManagers": ["github-actions"],
|
||||
"matchUpdateTypes": ["minor", "patch"],
|
||||
"matchPackageNames": [
|
||||
"t.behrendt/actions",
|
||||
"t.behrendt/actions/*",
|
||||
"t.behrendt/conventional-semantic-git-tag-increment",
|
||||
"t.behrendt/k_deploy_workflows",
|
||||
"t.behrendt/validate-json-by-json-schema-action",
|
||||
|
||||
"actions/checkout",
|
||||
"actions/cache",
|
||||
"actions/cache/*",
|
||||
"actions/setup-go",
|
||||
|
||||
"azure/setup-kubectl",
|
||||
"azure/setup-helm",
|
||||
"azure/k8s-set-context",
|
||||
"azure/k8s-create-secret",
|
||||
"azure/k8s-deploy",
|
||||
"azure/k8s-lint",
|
||||
|
||||
"helmfile/helmfile-action",
|
||||
|
||||
"docker/setup-buildx-action",
|
||||
"docker/login-action",
|
||||
"docker/build-push-action",
|
||||
|
||||
"oven-sh/setup-bun"
|
||||
],
|
||||
"automerge": true,
|
||||
"platformAutomerge": true,
|
||||
"automergeType": "pr",
|
||||
"addLabels": ["automerge"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
+28
-10
@@ -2,20 +2,38 @@
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"dependencyDashboard": true,
|
||||
"semanticCommits": "enabled",
|
||||
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"],
|
||||
"extends": [
|
||||
"config:recommended",
|
||||
"docker:pinDigests",
|
||||
"helpers:pinGitHubActionDigests",
|
||||
":configMigration",
|
||||
":pinDevDependencies",
|
||||
"abandonments:recommended",
|
||||
":maintainLockFilesWeekly",
|
||||
":semanticCommitTypeAll(chore)"
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "Don't update dependencies unless they are at least 7 days old",
|
||||
"matchPackageNames": ["*"],
|
||||
"description": "Don't update dependencies unless they are at least 7 days old (except for internal deps).",
|
||||
"matchPackageNames": [
|
||||
"!t.behrendt/**"
|
||||
],
|
||||
"minimumReleaseAge": "7 days",
|
||||
"minimumReleaseAgeBehaviour": "timestamp-required",
|
||||
"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,
|
||||
"dependencyDashboardOSVVulnerabilitySummary": "all",
|
||||
"vulnerabilityAlerts": {
|
||||
"enabled": true,
|
||||
"automerge": true,
|
||||
"platformAutomerge": true,
|
||||
"automergeType": "pr",
|
||||
"addLabels": [
|
||||
"automerge",
|
||||
"security"
|
||||
],
|
||||
"vulnerabilityFixStrategy": "lowest"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user