Bump Flutter in pipeline; adapt renovate to provide separated pull requests for all dependencies and ignore intl and path as they are bound to underlying flutter version (or the test dependency) #noissue
All checks were successful
/ build (push) Successful in 5m31s

This commit is contained in:
Varakh 2024-01-26 09:28:02 +01:00
parent e0973735d8
commit c7af6a874d
3 changed files with 35 additions and 34 deletions

View file

@ -3,7 +3,7 @@ jobs:
build:
runs-on: docker
container:
image: ghcr.io/cirruslabs/flutter:3.16.8
image: ghcr.io/cirruslabs/flutter:3.16.9
steps:
- name: Prepare requirements
run: |

View file

@ -1,33 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended"
],
"prConcurrentLimit": 0,
"schedule": [
"monthly"
],
"ignorePaths": [
"android/**",
"ios/**"
],
"ignoreDeps": [
"intl"
],
"packageRules": [
{
"matchUpdateTypes": [
"minor"
],
"groupName": "all minor dependencies",
"groupSlug": "all-minor-deps"
},
{
"matchUpdateTypes": [
"patch"
],
"groupName": "all patch dependencies",
"groupSlug": "all-patch-deps"
}
]
}

34
renovate.json5 Normal file
View file

@ -0,0 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended", ":rebaseStalePrs", ":ignoreUnstable", "group:monorepos", "group:recommended"
],
"prConcurrentLimit": 0,
"schedule": [
"weekly"
],
"ignorePaths": [
"android/**",
"ios/**"
],
"ignoreDeps": [
"intl",
"path"
],
// "packageRules": [
// {
// "matchUpdateTypes": [
// "minor"
// ],
// "groupName": "all minor dependencies",
// "groupSlug": "all-minor-deps"
// },
// {
// "matchUpdateTypes": [
// "patch"
// ],
// "groupName": "all patch dependencies",
// "groupSlug": "all-patch-deps"
// }
// ]
}