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
40 changes: 40 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,61 @@
version: 2

updates:
# GitHub Actions — only minor and patch updates (no major bumps).
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
cooldown:
default-days: 2
groups:
actions:
patterns:
- "*"
update-types:
- minor
- patch
open-pull-requests-limit: 5
labels:
- dependencies
- github-actions

# npm dependencies — only minor and patch updates.
- package-ecosystem: npm
directory: /
schedule:
interval: monthly
cooldown:
default-days: 2
groups:
production:
dependency-type: production
update-types:
- minor
- patch
development:
dependency-type: development
update-types:
- minor
- patch
open-pull-requests-limit: 10
labels:
- dependencies

# pip dependencies — only minor and patch updates.
- package-ecosystem: pip
directory: /
schedule:
interval: monthly
cooldown:
default-days: 2
groups:
python-deps:
patterns:
- "*"
update-types:
- minor
- patch
open-pull-requests-limit: 5
labels:
- dependencies
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/checkout@v4.4.0
with:
fetch-depth: 0

- uses: actions/setup-python@v5.6.0
with:
python-version: "3.12"

- uses: actions/setup-node@v7.0.0
- uses: actions/setup-node@v4.4.0
with:
node-version: "22"
registry-url: "https://registry.npmjs.org"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/checkout@v4.4.0
- uses: actions/setup-python@v5.6.0
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-node@v7.0.0
- uses: actions/setup-node@v4.4.0
with:
node-version: "22"
- run: python3 -m pip install pyyaml==6.0.3
Expand All @@ -31,7 +31,7 @@ jobs:
secrets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.1
- uses: actions/checkout@v4.4.0
with:
fetch-depth: 0
- run: bash scripts/scan-secrets.sh
Loading