From a2690452d39f2092f0c52a77268f77a173cf8ff1 Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Tue, 9 Sep 2025 22:22:57 +0900 Subject: [PATCH] Update workflows, Dependabot, and package metadata Changed Dependabot update intervals and pull request limits, updated super-linter action to a specific commit, removed lockfileVersion from .npmrc, and fixed the repository URL in package.json. --- .github/dependabot.yml | 8 ++++---- .github/workflows/super-linter.yml | 2 +- .npmrc | 1 - package.json | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3372e3c..f7d5bd9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: github-actions directory: "/" schedule: - interval: weekly + interval: monthly labels: - github-actions @@ -12,18 +12,18 @@ updates: schedule: interval: weekly versioning-strategy: increase - open-pull-requests-limit: 2 + open-pull-requests-limit: 1 - package-ecosystem: npm directory: "/htmlhint" schedule: interval: weekly versioning-strategy: increase - open-pull-requests-limit: 2 + open-pull-requests-limit: 1 - package-ecosystem: npm directory: "/htmlhint-server" schedule: interval: weekly versioning-strategy: increase - open-pull-requests-limit: 2 + open-pull-requests-limit: 1 diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 21bca17..9ead0fc 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -25,7 +25,7 @@ jobs: persist-credentials: false - name: Lint Code Base - uses: super-linter/super-linter/slim@v8 + uses: super-linter/super-linter/slim@ffde3b2b33b745cb612d787f669ef9442b1339a6 # v8.1.0 env: DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.npmrc b/.npmrc index 60d8227..f4e1e4a 100644 --- a/.npmrc +++ b/.npmrc @@ -1,2 +1 @@ -lockfileVersion = "3" registry = 'https://registry.npmjs.org/' diff --git a/package.json b/package.json index 5c48448..8522acf 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/htmlhint/vscode-htmlhint.git" + "url": "https://github.com/htmlhint/vscode-htmlhint.git" }, "funding": "https://opencollective.com/htmlhint", "license": "MIT",