Skip to content

Commit cad8576

Browse files
Technologicatclaude
andcommitted
add Dependabot for GitHub Actions, bump action versions
Add weekly Dependabot updates for the github-actions ecosystem. Bump checkout v2→v4, setup-python v2→v5, codecov-action v1→v5. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f43de91 commit cad8576

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
python-version: ["3.10"]
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install tools in CI virtualenv
@@ -47,7 +47,7 @@ jobs:
4747
python -m coverage run --source=. -m runtests
4848
python -m coverage xml
4949
- name: Upload coverage to Codecov
50-
uses: codecov/codecov-action@v1
50+
uses: codecov/codecov-action@v5
5151
with:
5252
token: ${{ secrets.CODECOV_TOKEN }}
5353
file: ./coverage.xml

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", pypy-3.8, pypy-3.9, pypy-3.10]
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
- name: Install tools in CI venv

0 commit comments

Comments
 (0)