Skip to content

Commit 8302787

Browse files
ci: add dependabot config for github-actions
1 parent 3ca05b1 commit 8302787

2 files changed

Lines changed: 18 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
labels:
11+
- "dependency"
12+
open-pull-requests-limit: 10
13+
rebase-strategy: "disabled"

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
lint:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
21-
- uses: actions/setup-python@v5
20+
- uses: actions/checkout@v6.0.2
21+
- uses: actions/setup-python@v6.2.0
2222
with:
2323
python-version: "3.12"
2424
- run: pip install ruff mypy astroid pylint
@@ -45,10 +45,10 @@ jobs:
4545
qt-binding: "pyside2"
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6.0.2
4949

5050
- name: Set up Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v6.2.0
5252
with:
5353
python-version: ${{ matrix.python-version }}
5454

@@ -64,6 +64,6 @@ jobs:
6464
run: pip install ${{ matrix.qt-binding }}
6565

6666
- name: Run tests
67-
uses: coactions/setup-xvfb@v1
67+
uses: coactions/setup-xvfb@v1.0.1
6868
with:
6969
run: pytest tests/unit/ tests/integration/${{ matrix.qt-binding }}/ tests/test_functional.py --cov --cov-report=xml

0 commit comments

Comments
 (0)