Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ updates:
directory: '/'
schedule:
interval: monthly
cooldown:
default-days: 7
versioning-strategy: increase
groups:
all-dependencies:
Expand All @@ -16,6 +18,8 @@ updates:
directory: '/'
schedule:
interval: monthly
cooldown:
default-days: 7
groups:
github-actions:
patterns:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
access_token: ${{ secrets.GITHUB_TOKEN }}

- name: ⬇️ Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

- name: ⎔ Setup node ${{ matrix.node }}
Comment on lines +28 to 32

Copilot AI Mar 6, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

package-lock.json is being removed/ignored, but this workflow still uses actions/setup-node with cache: npm and runs npm ci. Both typically require a committed lockfile; without it the job is likely to fail. Either keep package-lock.json tracked, or switch CI to npm install and remove/adjust npm caching accordingly.

Copilot uses AI. Check for mistakes.
uses: actions/setup-node@v3
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
Expand Down
Loading
Loading