Skip to content

Commit d4d53b1

Browse files
build(deps): Bump the actions group with 2 updates (#26)
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 05913a8 commit d4d53b1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build SDist
2626
run: pipx run build --sdist
2727

28-
- uses: actions/upload-artifact@v4
28+
- uses: actions/upload-artifact@v5
2929
with:
3030
name: cibw-sdist
3131
path: dist/*.tar.gz
@@ -53,7 +53,7 @@ jobs:
5353
pip install yq
5454
tomlq -r '.project."optional-dependencies".test[]' pyproject.toml | xargs -d '\n' pip install
5555
56-
- uses: actions/download-artifact@v5
56+
- uses: actions/download-artifact@v6
5757
with:
5858
name: cibw-sdist
5959
path: dist
@@ -72,7 +72,7 @@ jobs:
7272
needs: [build_wheels, make_sdist, test_sdist]
7373
runs-on: ubuntu-latest
7474
steps:
75-
- uses: actions/download-artifact@v5
75+
- uses: actions/download-artifact@v6
7676
with:
7777
path: all
7878

@@ -121,7 +121,7 @@ jobs:
121121
CIBW_TEST_SKIP: "${{ matrix.test-skip }}"
122122

123123
- name: Upload wheels
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v5
125125
with:
126126
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
127127
path: wheelhouse/*.whl
@@ -135,7 +135,7 @@ jobs:
135135
if: github.event_name == 'release' && github.event.action == 'published'
136136

137137
steps:
138-
- uses: actions/download-artifact@v5
138+
- uses: actions/download-artifact@v6
139139
with:
140140
pattern: cibw-*
141141
path: dist

0 commit comments

Comments
 (0)