Skip to content

Commit 5898a76

Browse files
Bump the gh-actions group across 1 directory with 3 updates (#266)
Bumps the gh-actions group with 3 updates in the / directory: [actions/setup-python](https://github.com/actions/setup-python), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `actions/setup-python` from 5.3.0 to 5.4.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5.3.0...v5.4.0) Updates `codecov/codecov-action` from 5.1.2 to 5.4.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.1.2...v5.4.0) Updates `pypa/gh-action-pypi-publish` from 1.12.3 to 1.12.4 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.3...v1.12.4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a144c25 commit 5898a76

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@v4
2929
- name: Setup Python
30-
uses: actions/setup-python@v5.3.0
30+
uses: actions/setup-python@v5.4.0
3131
with:
3232
python-version: ${{ matrix.python-version }}
3333
architecture: x64
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
pytest --verbose --cov=. --cov-report=xml
4646
- name: Upload coverage to Codecov
47-
uses: codecov/codecov-action@v5.1.2
47+
uses: codecov/codecov-action@v5.4.0
4848
if: ${{ matrix.python-version }} == 3.10
4949
with:
5050
file: ./coverage.xml
@@ -60,7 +60,7 @@ jobs:
6060
steps:
6161
- uses: actions/checkout@v4
6262
- name: Setup Python
63-
uses: actions/setup-python@v5.3.0
63+
uses: actions/setup-python@v5.4.0
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666
architecture: x64

.github/workflows/pypi-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
22-
- uses: actions/setup-python@v5.3.0
22+
- uses: actions/setup-python@v5.4.0
2323
name: Install Python
2424
with:
2525
python-version: 3.11
@@ -62,7 +62,7 @@ jobs:
6262
needs: build-artifacts
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/setup-python@v5.3.0
65+
- uses: actions/setup-python@v5.4.0
6666
name: Install Python
6767
with:
6868
python-version: 3.11
@@ -80,7 +80,7 @@ jobs:
8080
python -m pip install dist/xbatcher*.whl
8181
python -m xbatcher.util.print_versions
8282
- name: Publish package to TestPyPI
83-
uses: pypa/[email protected].3
83+
uses: pypa/[email protected].4
8484
with:
8585
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
8686
repository-url: https://test.pypi.org/legacy/
@@ -96,7 +96,7 @@ jobs:
9696
name: releases
9797
path: dist
9898
- name: Publish package to PyPI
99-
uses: pypa/[email protected].3
99+
uses: pypa/[email protected].4
100100
with:
101101
password: ${{ secrets.PYPI_API_TOKEN }}
102102
# verbose: true

.github/workflows/testpypi-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
fetch-depth: 0
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v5.3.0
27+
uses: actions/setup-python@v5.4.0
2828
with:
2929
python-version: "3.11"
3030

@@ -49,7 +49,7 @@ jobs:
4949
python -m xbatcher.util.print_versions
5050
5151
- name: Publish package to TestPyPI
52-
uses: pypa/[email protected].3
52+
uses: pypa/[email protected].4
5353
with:
5454
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
5555
repository-url: https://test.pypi.org/legacy/

0 commit comments

Comments
 (0)