From c7af6a874daee519213eb83c96735721cfb1743f Mon Sep 17 00:00:00 2001 From: Varakh Date: Fri, 26 Jan 2024 09:28:02 +0100 Subject: [PATCH] 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 --- .forgejo/workflows/build.yaml | 2 +- renovate.json | 33 --------------------------------- renovate.json5 | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 34 deletions(-) delete mode 100644 renovate.json create mode 100644 renovate.json5 diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 3ee6daa..816476f 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -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: | diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 8dd4c68..0000000 --- a/renovate.json +++ /dev/null @@ -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" - } - ] -} diff --git a/renovate.json5 b/renovate.json5 new file mode 100644 index 0000000..cd0eadc --- /dev/null +++ b/renovate.json5 @@ -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" +// } +// ] +}