From 58af5426750605f0d4379192c4670389c793df39 Mon Sep 17 00:00:00 2001 From: Shintaro Jokagi <61367823+taroj1205@users.noreply.github.com> Date: Wed, 18 Jun 2025 18:20:15 +1200 Subject: [PATCH] fix(renovate): optimize configuration and update package rules (#683) * fix(renovate): optimize configuration and update package rules * chore(ci): update pnpm version to latest in CI pipeline configuration * chore(ci): remove version specification for pnpm in CI pipeline configuration --- .github/workflows/ci-pipeline.yml | 3 --- package.json | 2 +- renovate.json | 12 ++++-------- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index e360eeb..f02e88f 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -58,7 +58,6 @@ jobs: if: steps.check-node-modules-cache.outputs.cache-hit != 'true' uses: pnpm/action-setup@v4 with: - version: 10.11.0 run_install: false - name: Install dependencies @@ -119,7 +118,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 10.11.0 run_install: false - name: Run ${{ matrix.name }} @@ -159,7 +157,6 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 10.11.0 run_install: false - name: Cache Playwright Browsers diff --git a/package.json b/package.json index 4913817..f2316b1 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "engines": { "pnpm": "^10.0.0" }, - "packageManager": "pnpm@10.11.0", + "packageManager": "pnpm@10.12.1", "scripts": { "dev": "astro dev --port 3000", "start": "astro preview --port 3000", diff --git a/renovate.json b/renovate.json index 77cdac2..4b6b57c 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:js-app"], + "extends": ["config:recommended", "config:js-app"], "labels": ["dependencies", "renovate"], "prConcurrentLimit": 10, "prHourlyLimit": 2, @@ -9,8 +9,7 @@ "packageRules": [ { "description": "Group minor and patch-level updates", - "matchUpdateTypes": ["minor", "patch", "digest"], - "automergeType": "branch" + "matchUpdateTypes": ["minor", "patch", "digest"] }, { "description": "Group Astro related packages", @@ -62,8 +61,7 @@ { "description": "Group type definitions", "groupName": "type-definitions", - "matchPackageNames": ["@types*"], - "excludePackageNames": ["@types/react*"] + "matchPackageNames": ["@types*", "!@types/react*"] }, { "description": "Group devDependencies", @@ -76,8 +74,6 @@ "labels": ["dependencies", "major-update"] } ], - "vulnerabilityAlerts": { - "labels": ["security", "dependencies"] - }, + "vulnerabilityAlerts": { "labels": ["security", "dependencies"] }, "osvVulnerabilityAlerts": true }