Skip to content

Commit d04b895

Browse files
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 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]>
1 parent e36e661 commit d04b895

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fetch-depth: 0
4545
- name: Build sdist
4646
run: pipx run build -s
47-
- uses: actions/upload-artifact@v4
47+
- uses: actions/upload-artifact@v5
4848
with:
4949
name: source-dist
5050
path: ./dist/*.tar.gz
@@ -96,7 +96,7 @@ jobs:
9696
env:
9797
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
9898

99-
- uses: actions/upload-artifact@v4
99+
- uses: actions/upload-artifact@v5
100100
with:
101101
name: ${{ matrix.python == '*' && 'all' || matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}-dist
102102
path: ./wheelhouse/*.whl
@@ -106,7 +106,7 @@ jobs:
106106
needs: [build-sdist]
107107
runs-on: ubuntu-latest
108108
steps:
109-
- uses: actions/download-artifact@v5
109+
- uses: actions/download-artifact@v6
110110
with:
111111
name: source-dist
112112
path: ./dist
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: ubuntu-latest
128128
needs: [test-sdist, build-wheel]
129129
steps:
130-
- uses: actions/download-artifact@v5
130+
- uses: actions/download-artifact@v6
131131
with:
132132
path: dist/
133133
pattern: '*-dist'
@@ -141,7 +141,7 @@ jobs:
141141
needs: [pre-publish]
142142
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
143143
steps:
144-
- uses: actions/download-artifact@v5
144+
- uses: actions/download-artifact@v6
145145
with:
146146
path: dist/
147147
pattern: '*-dist'

0 commit comments

Comments
 (0)