Skip to content

Commit 57aef45

Browse files
authored
Merge branch 'master' into copilot/fix-2122
2 parents c907dad + 7467093 commit 57aef45

File tree

3 files changed

+46
-34
lines changed

3 files changed

+46
-34
lines changed

azure/.terraform.lock.hcl

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

azure/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
}
99
azurerm = {
1010
source = "hashicorp/azurerm"
11-
version = "~> 4.40.0"
11+
version = "~> 4.41.0"
1212
}
1313
http = {
1414
source = "hashicorp/http"

renovate.json

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@
7777
{
7878
"customType": "regex",
7979
"description": "Track Docker base images in Dockerfiles",
80-
"fileMatch": ["(^|/)Dockerfile[^/]*$"],
80+
"managerFilePatterns": [
81+
"/(^|/)Dockerfile[^/]*$/"
82+
],
8183
"matchStrings": [
8284
"FROM\\s+(?<depName>bellsoft/liberica-openjre-debian):(?<currentValue>[^\\s]+)",
8385
"FROM\\s+(?<depName>eclipse-temurin):(?<currentValue>[^\\s]+)"
@@ -87,7 +89,9 @@
8789
{
8890
"customType": "regex",
8991
"description": "Track runtime versions in GitHub Actions",
90-
"fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"],
92+
"managerFilePatterns": [
93+
"/^\\.github/workflows/[^/]+\\.ya?ml$/"
94+
],
9195
"matchStrings": [
9296
"node-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?",
9397
"python-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?",
@@ -156,29 +160,37 @@
156160
},
157161
{
158162
"groupName": "GitHub Actions",
159-
"matchDatasources": ["github-tags"],
163+
"matchDatasources": [
164+
"github-tags"
165+
],
160166
"matchPackageNames": [
161-
"/^actions\//"
167+
"/^actions//"
162168
]
163169
},
164170
{
165171
"groupName": "Docker Actions",
166-
"matchDatasources": ["github-tags"],
172+
"matchDatasources": [
173+
"github-tags"
174+
],
167175
"matchPackageNames": [
168-
"/^docker\//"
176+
"/^docker//"
169177
]
170178
},
171179
{
172180
"groupName": "Java Runtime Images",
173-
"matchDatasources": ["docker"],
181+
"matchDatasources": [
182+
"docker"
183+
],
174184
"matchPackageNames": [
175185
"bellsoft/liberica-openjre-debian",
176186
"eclipse-temurin"
177187
]
178188
},
179189
{
180190
"groupName": "Runtime Versions",
181-
"schedule": ["before 6am on the first day of the month"],
191+
"schedule": [
192+
"before 6am on the first day of the month"
193+
],
182194
"matchPackageNames": [
183195
"node",
184196
"python",
@@ -189,7 +201,7 @@
189201
"groupName": "Frontend Dependencies",
190202
"matchPackageNames": [
191203
"/^playwright/",
192-
"/^@babel\//"
204+
"/^@babel//"
193205
]
194206
}
195207
]

0 commit comments

Comments
 (0)