Skip to content

Commit 2d32abf

Browse files
chore(deps): bump the actions group with 2 updates (#370)
Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). 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) --- updated-dependencies: - 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 ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 169edd6 commit 2d32abf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
"cmake.define.FASTJET_ENABLE_CGAL"="ON"
168168
169169
- name: Upload wheels
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v5
171171
with:
172172
name: cibw-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }}
173173
path: wheelhouse/*.whl

.github/workflows/wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build SDist
2323
run: pipx run build --sdist
2424

25-
- uses: actions/upload-artifact@v4
25+
- uses: actions/upload-artifact@v5
2626
with:
2727
name: cibw-sdist
2828
path: dist/*.tar.gz
@@ -84,7 +84,7 @@ jobs:
8484
"cmake.define.FASTJET_ENABLE_CGAL"="ON"
8585
8686
- name: Upload wheels
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v5
8888
with:
8989
name: cibw-wheels-${{ matrix.os }}-${{ matrix.python }}-${{ matrix.arch }}
9090
path: wheelhouse/*.whl
@@ -93,7 +93,7 @@ jobs:
9393
needs: [make_sdist]
9494
runs-on: ubuntu-latest
9595
steps:
96-
- uses: actions/download-artifact@v5
96+
- uses: actions/download-artifact@v6
9797
with:
9898
pattern: cibw-*
9999
path: dist
@@ -119,7 +119,7 @@ jobs:
119119
if: github.event_name == 'release' && github.event.action == 'published'
120120

121121
steps:
122-
- uses: actions/download-artifact@v5
122+
- uses: actions/download-artifact@v6
123123
with:
124124
pattern: cibw-*
125125
path: dist

0 commit comments

Comments
 (0)