Skip to content

Commit 07a6d09

Browse files
dependabot[bot]fedorov
authored andcommitted
build(deps): Bump the actions group with 2 updates
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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 75c05f8 commit 07a6d09

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@v5
28+
- uses: actions/upload-artifact@v6
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@v6
56+
- uses: actions/download-artifact@v7
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@v6
75+
- uses: actions/download-artifact@v7
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@v5
124+
uses: actions/upload-artifact@v6
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@v6
138+
- uses: actions/download-artifact@v7
139139
with:
140140
pattern: cibw-*
141141
path: dist

0 commit comments

Comments
 (0)