Skip to content

Commit e254440

Browse files
Bump the actions group across 1 directory with 8 updates
Bumps the actions group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [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) | `4` | `6` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.2.1` | `2.4.1` | | [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) | `0.8.3` | `0.9.2` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.4.0` | `5.5.1` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) 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 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...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@76f52bc...ed0c539) Updates `softprops/action-gh-release` from 2.2.1 to 2.4.1 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@c95fe14...6da8fa9) Updates `prefix-dev/setup-pixi` from 0.8.3 to 0.9.2 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](prefix-dev/setup-pixi@9281528...28eb668) Updates `codecov/codecov-action` from 5.4.0 to 5.5.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@0565863...5a10915) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major 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 - dependency-name: softprops/action-gh-release dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: prefix-dev/setup-pixi dependency-version: 0.9.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 5.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9206fa6 commit e254440

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ jobs:
1313
version-changed: ${{ steps.version-metadata.outputs.changed }}
1414
new-version: ${{ steps.version-metadata.outputs.newVersion }}
1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-python@v5
16+
- uses: actions/checkout@v5
17+
- uses: actions/setup-python@v6
1818
with:
1919
python-version: '3.9'
2020
- name: Install Python build
2121
run: pip install build
2222
- name: Build project
2323
run: python -m build
2424
- name: Upload package
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v5
2626
with:
2727
name: artifact
2828
path: dist/*
@@ -43,19 +43,19 @@ jobs:
4343
contents: write
4444
environment: pypi
4545
steps:
46-
- uses: actions/download-artifact@v4
46+
- uses: actions/download-artifact@v6
4747
with:
4848
name: artifact
4949
path: dist
5050
- name: Publish package on PyPi
51-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc
52-
- uses: actions/checkout@v4
51+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e
52+
- uses: actions/checkout@v5
5353
- name: Push v${{ needs.build.outputs.new-version }} tag
5454
run: |
5555
git tag v${{ needs.build.outputs.new-version }}
5656
git push origin v${{ needs.build.outputs.new-version }}
5757
- name: Create release
58-
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda
58+
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090
5959
with:
6060
generate_release_notes: true
6161
tag_name: v${{ needs.build.outputs.new-version }}

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
- py312
2626
- py313
2727
steps:
28-
- uses: actions/checkout@v4
29-
- uses: prefix-dev/setup-pixi@92815284c57faa15cd896c4d5cfb2d59f32dc43d
28+
- uses: actions/checkout@v5
29+
- uses: prefix-dev/setup-pixi@28eb668aafebd9dede9d97c4ba1cd9989a4d0004
3030
with:
3131
environments: ${{ matrix.env }}
3232
- name: Install repository
@@ -39,7 +39,7 @@ jobs:
3939
report-title: ${{ matrix.env }}
4040
- name: Upload coverage reports to Codecov
4141
if: matrix.env == 'py312'
42-
uses: codecov/codecov-action@0565863a31f2c772f9f0395002a31e3f06189574
42+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
4343
env:
4444
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4545
file: ./coverage.xml
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Checkout branch
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
- name: Run pre-commit
5656
uses: quantco/pre-commit-conda@v1
5757

@@ -60,7 +60,7 @@ jobs:
6060
runs-on: ubuntu-latest
6161
steps:
6262
- name: Checkout branch
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464
# https://github.com/rhysd/actionlint/blob/main/docs/usage.md#use-actionlint-on-github-actions
6565
- name: Download actionlint
6666
id: get_actionlint

0 commit comments

Comments
 (0)