Skip to content

Commit 01885e8

Browse files
authored
Merge pull request #239 from bashtage/actions-maint
MAINT: Update CI
2 parents 9b19fa5 + 04dbea4 commit 01885e8

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
# Check for updates to GitHub Actions every week
8+
interval: "weekly"

.github/workflows/tox.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
strategy:
1515
max-parallel: 4
1616
matrix:
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
17+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1818
pandas-presence: ['with_pandas', 'without_pandas']
1919
env:
2020
PYTHON_VERSION: ${{ matrix.python-version }}
2121
PANDAS_PRESENCE: ${{ matrix.pandas-presence }}
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v5
2424
- name: Set up Python ${{ matrix.python-version }}
2525
id: gha-python
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
continue-on-error: true
@@ -50,8 +50,8 @@ jobs:
5050
PYTHON_ENV="py$(echo $PYTHON_VERSION | sed 's/\.//;s/\-dev//')"
5151
tox -e "${PYTHON_ENV}-${PANDAS_PRESENCE}"
5252
- name: Upload coverage to Codecov
53-
uses: codecov/codecov-action@v1.0.10
53+
uses: codecov/codecov-action@v5
5454
with:
55-
file: ./coverage.xml
55+
files: ./coverage.xml
5656
flags: unittests
5757
env_vars: PYTHON_VERSION,PANDAS_PRESENCE

0 commit comments

Comments
 (0)