Skip to content

Commit 7bc1a38

Browse files
Bump the actions group with 6 updates
Bumps the actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.3` | `5.5.2` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `codecov/codecov-action` from 5.4.3 to 5.5.2 - [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.4.3...v5.5.2) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5e8f9b9 commit 7bc1a38

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
3737
steps:
38-
- uses: actions/checkout@v5
38+
- uses: actions/checkout@v6
3939
- uses: conda-incubator/setup-miniconda@v3
4040
with:
4141
activate-environment: pythia-datasets
@@ -52,7 +52,7 @@ jobs:
5252
python -m pytest --cov=./ --cov-report=xml --verbose
5353
5454
- name: Upload code coverage to Codecov
55-
uses: codecov/codecov-action@v5.4.3
55+
uses: codecov/codecov-action@v5.5.2
5656
with:
5757
files: ./coverage.xml
5858
flags: unittests

.github/workflows/pypi-release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: github.repository == 'ProjectPythia/pythia-datasets'
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
15-
- uses: actions/setup-python@v5
15+
- uses: actions/setup-python@v6
1616
name: Install Python
1717
with:
1818
python-version: 3.11
@@ -38,7 +38,7 @@ jobs:
3838
else
3939
echo "✅ Looks good"
4040
fi
41-
- uses: actions/upload-artifact@v4
41+
- uses: actions/upload-artifact@v5
4242
with:
4343
name: releases
4444
path: dist
@@ -47,11 +47,11 @@ jobs:
4747
needs: build-artifacts
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/setup-python@v5
50+
- uses: actions/setup-python@v6
5151
name: Install Python
5252
with:
5353
python-version: 3.11
54-
- uses: actions/download-artifact@v5
54+
- uses: actions/download-artifact@v6
5555
with:
5656
name: releases
5757
path: dist
@@ -65,12 +65,12 @@ jobs:
6565
if: github.event_name == 'release'
6666
runs-on: ubuntu-latest
6767
steps:
68-
- uses: actions/download-artifact@v5
68+
- uses: actions/download-artifact@v6
6969
with:
7070
name: releases
7171
path: dist
7272
- name: Publish package to PyPI
73-
uses: pypa/gh-action-pypi-publish@v1.12.4
73+
uses: pypa/gh-action-pypi-publish@v1.13.0
7474
with:
7575
user: __token__
7676
password: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)