Skip to content

Commit 987c927

Browse files
committed
chore: Configure dependabot for actions, uv
1 parent e51a33b commit 987c927

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: monthly
7+
groups:
8+
actions-infrastructure:
9+
patterns:
10+
- actions/*
11+
- package-ecosystem: uv
12+
directory: /
13+
schedule:
14+
interval: weekly

.github/workflows/gh-pages.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
python: ["3.11"]
1310
steps:
1411
- uses: actions/checkout@v4
15-
- name: Set up Python ${{ matrix.python }}
12+
- name: Set up uv
1613
uses: astral-sh/setup-uv@v6
17-
with:
18-
python-version: ${{ matrix.python }}
19-
- name: uv sync
14+
- name: Sync environment
15+
run: uv sync
2016
- name: Generate schemas
2117
run: uv run -m bsmschema specification/schema/
2218
- name: Build

0 commit comments

Comments
 (0)