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 }