From 563940d2848ae07982c0cf7fb792d2cb34e337f1 Mon Sep 17 00:00:00 2001 From: Alexandru Nedelcu Date: Sun, 31 May 2026 09:04:43 +0300 Subject: [PATCH 1/3] Add renovate for repo updates --- .github/renovate-config.js | 20 ++++++++++++++++++++ .github/workflows/renovate.yaml | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .github/renovate-config.js create mode 100644 .github/workflows/renovate.yaml diff --git a/.github/renovate-config.js b/.github/renovate-config.js new file mode 100644 index 0000000..9b2385d --- /dev/null +++ b/.github/renovate-config.js @@ -0,0 +1,20 @@ +module.exports = { + platform: 'github', + repositories: [process.env.GITHUB_REPOSITORY], + onboarding: false, + requireConfig: 'optional', + + extends: ['config:recommended'], + + enabledManagers: ['github-actions', 'gradle', 'gradle-wrapper', 'sbt'], + + ignorePaths: ['**/.gradle/**'], + + packageRules: [ + { + description: 'Wait one week before proposing dependency updates', + matchManagers: ['github-actions', 'gradle', 'gradle-wrapper', 'sbt'], + minimumReleaseAge: '7 days', + }, + ], +}; diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml new file mode 100644 index 0000000..21a664c --- /dev/null +++ b/.github/workflows/renovate.yaml @@ -0,0 +1,19 @@ +name: Renovate + +on: + workflow_dispatch: + schedule: + - cron: '17 4 * * 1' + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Renovate + uses: renovatebot/github-action@v46.1.14 + with: + configurationFile: .github/renovate-config.js + token: ${{ secrets.RENOVATE_TOKEN }} From 81670d41d4e2f22a5dfe7d0700622ae8613492cb Mon Sep 17 00:00:00 2001 From: Alexandru Nedelcu Date: Sun, 31 May 2026 09:11:40 +0300 Subject: [PATCH 2/3] Fix config --- .github/renovate-config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/renovate-config.js b/.github/renovate-config.js index 9b2385d..bc295f2 100644 --- a/.github/renovate-config.js +++ b/.github/renovate-config.js @@ -1,6 +1,8 @@ module.exports = { platform: 'github', - repositories: [process.env.GITHUB_REPOSITORY], + repositories: ['funfix/database'], + gitAuthor: 'Renovate Bot ', + branchPrefix: 'renovate/', onboarding: false, requireConfig: 'optional', From af1fa60cf004199ee8acf05bdf6e5f7d3da68a5a Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 31 May 2026 06:13:10 +0000 Subject: [PATCH 3/3] Update dependency org.typelevel:cats-effect-testkit to v3.7-4972921 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1b33f71..ece0000 100644 --- a/build.sbt +++ b/build.sbt @@ -168,7 +168,7 @@ lazy val delayedqueueJVM = project // Testing "org.scalameta" %% "munit" % "1.3.0" % Test, "org.typelevel" %% "munit-cats-effect" % "2.2.0" % Test, - "org.typelevel" %% "cats-effect-testkit" % "3.7.0" % Test, + "org.typelevel" %% "cats-effect-testkit" % "3.7-4972921" % Test, "org.scalacheck" %% "scalacheck" % "1.19.0" % Test, "org.scalameta" %% "munit-scalacheck" % "1.3.0" % Test, // JDBC drivers for testing