Skip to content

Commit 35c4f2c

Browse files
Merge branch 'main' into pset_execute_time_management
2 parents ec6301c + e91a571 commit 35c4f2c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
coverage run -m pytest -v -s --html=${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html --self-contained-html tests
4646
coverage xml
4747
- name: Codecov
48-
uses: codecov/codecov-action@v5.1.2
48+
uses: codecov/codecov-action@v5.3.1
4949
env:
5050
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
5151
if: matrix.python-version == '3.13'
@@ -80,7 +80,7 @@ jobs:
8080
coverage run -m pytest -v -s --nbval-lax -k "not documentation" --html="${{ matrix.os }}_${{ matrix.python-version }}_integration_test_report.html" --self-contained-html docs/examples
8181
coverage xml
8282
- name: Codecov
83-
uses: codecov/codecov-action@v5.1.2
83+
uses: codecov/codecov-action@v5.3.1
8484
env:
8585
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8686
with:
@@ -117,7 +117,7 @@ jobs:
117117
run: |
118118
mypy --install-types --non-interactive parcels --cobertura-xml-report mypy_report
119119
- name: Upload mypy coverage to Codecov
120-
uses: codecov/codecov-action@v5.1.2
120+
uses: codecov/codecov-action@v5.3.1
121121
if: ${{ always() }} # Upload even on error of mypy
122122
env:
123123
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/pypi-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
7373
- name: Publish package to TestPyPI
7474
if: github.event_name == 'push'
75-
uses: pypa/[email protected].3
75+
uses: pypa/[email protected].4
7676
with:
7777
user: __token__
7878
password: ${{ secrets.PARCELS_PYPI_TEST_TOKEN }}
@@ -89,7 +89,7 @@ jobs:
8989
name: releases
9090
path: dist
9191
- name: Publish package to PyPI
92-
uses: pypa/[email protected].3
92+
uses: pypa/[email protected].4
9393
with:
9494
user: __token__
9595
password: ${{ secrets.PARCELS_PYPI_PROD_TOKEN }}

0 commit comments

Comments
 (0)