Skip to content

Commit 1cfa05b

Browse files
chore(deps): bump actions/upload-artifact from 5 to 6 (#442)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 90ead84 commit 1cfa05b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
target: ${{ steps.target.outputs.target }}
114114

115115
- name: Upload wheels
116-
uses: actions/upload-artifact@v5
116+
uses: actions/upload-artifact@v6
117117
with:
118118
name: "wheels-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ matrix.architecture }}"
119119
path: dist
@@ -130,7 +130,7 @@ jobs:
130130
command: sdist
131131
args: "-o dist"
132132
- name: upload sdist
133-
uses: actions/upload-artifact@v5
133+
uses: actions/upload-artifact@v6
134134
with:
135135
name: sdist
136136
path: dist

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
args: "--release -o dist -i python${{ matrix.python-version }}"
2828
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-unknown-linux-gnu' || null }}
2929
- name: Upload wheels
30-
uses: actions/upload-artifact@v5
30+
uses: actions/upload-artifact@v6
3131
with:
3232
name: "wheels-linux-python-${{ matrix.python-version }}-${{ matrix.architecture }}"
3333
path: dist
@@ -51,7 +51,7 @@ jobs:
5151
args: "--release -o dist -i python${{ matrix.python-version }}"
5252
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-apple-darwin' || 'x86_64-apple-darwin' }}
5353
- name: Upload wheels
54-
uses: actions/upload-artifact@v5
54+
uses: actions/upload-artifact@v6
5555
with:
5656
name: "wheels-macos-python-${{ matrix.python-version }}-${{ matrix.architecture }}"
5757
path: dist
@@ -74,7 +74,7 @@ jobs:
7474
command: build
7575
args: "--release -o dist -i python${{ matrix.python-version }}"
7676
- name: Upload wheels
77-
uses: actions/upload-artifact@v5
77+
uses: actions/upload-artifact@v6
7878
with:
7979
name: "wheels-windows-python-${{ matrix.python-version }}"
8080
path: dist
@@ -94,7 +94,7 @@ jobs:
9494
command: sdist
9595
args: "-o dist"
9696
- name: Upload sdist
97-
uses: actions/upload-artifact@v5
97+
uses: actions/upload-artifact@v6
9898
with:
9999
name: sdist
100100
path: dist

0 commit comments

Comments
 (0)