diff --git a/.github/renovate.json5 b/.github/renovate.json5 index cc5cfdc9..98324bdb 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,4 +1,5 @@ { + $schema: "https://docs.renovatebot.com/renovate-schema.json", extends: [ "config:base", "schedule:daily", @@ -14,12 +15,13 @@ "security", ], }, - "regexManagers": [ + customManagers: [ { - "fileMatch": ["\\.yaml$"], - "matchStrings": [ - "# ?renovate datasource=(?.+?) depName=(?.+)\\n.+: [\"']?(?.+?)[\"']?\\n" - ] - } - ] + customType: "regex", + fileMatch: ["\\.yaml$"], + matchStrings: [ + "# renovate: datasource=(?.+?) depName=(?.+?)( packageName=(?.+))?\\s.+: [\"']?(?.+?)[\"']?\\s", + ], + }, + ], } diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index a7c6d382..ed261556 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -18,10 +18,12 @@ jobs: - name: Set up Helm uses: azure/setup-helm@v4 with: - version: v3.10.3 # renovate: datasource=github-releases depName=helm packageName=helm/helm + # renovate: datasource=github-tags depName=helm packageName=helm/helm + version: v3.10.3 - uses: actions/setup-python@v5 with: + # renovate: datasource=docker depName=python python-version: '3.9' check-latest: true diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f28d4623..b4167069 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -24,7 +24,8 @@ jobs: - name: Install Helm uses: azure/setup-helm@v4 with: - version: v3.10.3 # renovate: datasource=github-releases depName=helm packageName=helm/helm + # renovate: datasource=github-tags depName=helm packageName=helm/helm + version: v3.10.3 - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 diff --git a/charts/atlantis/Chart.yaml b/charts/atlantis/Chart.yaml index 4c4f29c2..7c9562ef 100644 --- a/charts/atlantis/Chart.yaml +++ b/charts/atlantis/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v1 -# renovate datasource=docker depName=ghcr.io/runatlantis/atlantis +# renovate: datasource=docker depName=ghcr.io/runatlantis/atlantis appVersion: v0.27.0 description: A Helm chart for Atlantis https://www.runatlantis.io name: atlantis -version: 4.23.4 +version: 4.23.5 keywords: - terraform home: https://www.runatlantis.io diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 39a2b6e9..00000000 --- a/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base" - ] -}