From d899ed299620f557b0175710b8dedbdd7c31213d Mon Sep 17 00:00:00 2001 From: tomverin Date: Thu, 2 Apr 2026 15:07:08 +0200 Subject: [PATCH 1/2] BUILD-10861 Dependabot 5-day cooldown + internal excludes (#225) --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c5f33e3..480f81d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,5 +12,9 @@ updates: interval: "daily" timezone: "CET" open-pull-requests-limit: 100 + cooldown: + default-days: 5 + exclude: + - "SonarSource/*" commit-message: prefix: "NO-JIRA " From f099b441665cb71b0414100cfaf6d835492cee5f Mon Sep 17 00:00:00 2001 From: Claire Villard <60586848+claire-villard-sonarsource@users.noreply.github.com> Date: Fri, 3 Apr 2026 10:34:00 +0200 Subject: [PATCH 2/2] SQSCANGHA-133 Upgrade the Node version used in UTs + contribution guide (#226) --- .github/workflows/unit-tests.yml | 2 +- contributing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index cc0575a..1511ed9 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v6 with: - node-version: "20" + node-version: "24" cache: "npm" - name: Install dependencies diff --git a/contributing.md b/contributing.md index 868fed1..0fde71c 100644 --- a/contributing.md +++ b/contributing.md @@ -32,7 +32,7 @@ Both the main action and the secondary _install-build-wrapper_ action are [Javas ### Requirements -Make sure you have node 20 & npm installed. We recommend using [nvm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm#using-a-node-version-manager-to-install-nodejs-and-npm) for that. +Make sure you have node 24 & npm installed. We recommend using [nvm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm#using-a-node-version-manager-to-install-nodejs-and-npm) for that. ### Building & testing