From 1c5e2143a074579c0409cf739b5c70c87cbc0708 Mon Sep 17 00:00:00 2001 From: Dan Webb Date: Sun, 15 Jun 2025 10:37:48 +0100 Subject: [PATCH 1/2] feat: Update Ruby versions Remove EOL Ruby 3.2 Signed-off-by: Dan Webb --- .github/workflows/lint-unit.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-unit.yml b/.github/workflows/lint-unit.yml index 3d383f5..3436a88 100644 --- a/.github/workflows/lint-unit.yml +++ b/.github/workflows/lint-unit.yml @@ -28,7 +28,9 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.4"] + ruby: &ruby_versions + - "3.2" + - "3.3" name: Cookstyle/Chefstyle on Ruby steps: - name: Checkout code @@ -82,7 +84,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["3.1", "3.2", "3.3"] + ruby: *ruby_versions steps: - name: Checkout code uses: actions/checkout@v4 From 7c2d64baec4066787c1071f21a54848f0ce3037b Mon Sep 17 00:00:00 2001 From: Dan Webb Date: Sun, 15 Jun 2025 10:41:46 +0100 Subject: [PATCH 2/2] fix: Renovate auto-merge config Signed-off-by: Dan Webb --- renovate.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7bbf482..d47aa49 100644 --- a/renovate.json +++ b/renovate.json @@ -1,4 +1,12 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended", "schedule:automergeEarlyMondays"] + "extends": ["config:recommended"], + "packageRules": [ + { + "matchUpdateTypes": ["patch"], + "automerge": true, + "automergeType": "branch", + "schedule": ["on monday"] + } + ] }