Skip to content

Commit bcfd7a6

Browse files
committed
Update CI dependencies
- Add dependabot CI with monthly interval
1 parent f3b0394 commit bcfd7a6

3 files changed

Lines changed: 27 additions & 13 deletions

File tree

.github/dependabot.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Please see the documentation for all configuration options:
2+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3+
4+
version: 2
5+
updates:
6+
- package-ecosystem: pip
7+
directory: /
8+
schedule:
9+
interval: monthly
10+
groups:
11+
production-dependencies:
12+
dependency-type: production
13+
development-dependencies:
14+
dependency-type: development
15+
- package-ecosystem: github-actions
16+
directory: /
17+
schedule:
18+
interval: monthly

.github/workflows/docs.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: docs
1+
name: docs
22

33
on:
44
workflow_run:
55
workflows: [CI]
66
types:
7-
- completed
7+
- completed
88
branches:
9-
- main
9+
- main
1010

1111
env:
1212
UV_FROZEN: true
@@ -17,16 +17,14 @@ jobs:
1717
if: ${{ github.event.workflow_run.conclusion == 'success' }}
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v5
23-
with:
24-
pyproject-file: pyproject.toml
22+
uses: astral-sh/setup-uv@v8.1.0
2523
- name: Install the project
2624
run: uv sync --all-extras
2725
- name: Build docs
2826
run: uv run pdoc -o docs/ -d google bids2table
29-
- uses: actions/upload-pages-artifact@v3
27+
- uses: actions/upload-pages-artifact@v5
3028
with:
3129
path: docs/
3230

@@ -43,4 +41,4 @@ jobs:
4341
url: ${{ steps.deployment.outputs.page_url }}
4442
steps:
4543
- id: deployment
46-
uses: actions/deploy-pages@v4
44+
uses: actions/deploy-pages@v5

.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ jobs:
1818
# IMPORTANT: this permission is mandatory for Trusted Publishing
1919
id-token: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Install uv
23-
uses: astral-sh/setup-uv@v5
24-
with:
25-
pyproject-file: pyproject.toml
23+
uses: astral-sh/setup-uv@v8.1.0
2624
- name: Build project
2725
run: |
2826
uv sync --no-dev --no-install-project

0 commit comments

Comments
 (0)