Skip to content

Commit 9a03504

Browse files
chore(deps): bump actions/upload-artifact from 6 to 7 (#460)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' 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 bcb2c40 commit 9a03504

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
@@ -118,7 +118,7 @@ jobs:
118118
target: ${{ steps.target.outputs.target }}
119119

120120
- name: Upload wheels
121-
uses: actions/upload-artifact@v6
121+
uses: actions/upload-artifact@v7
122122
with:
123123
name: "wheels-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ matrix.architecture }}"
124124
path: dist
@@ -135,7 +135,7 @@ jobs:
135135
command: sdist
136136
args: "-o dist"
137137
- name: upload sdist
138-
uses: actions/upload-artifact@v6
138+
uses: actions/upload-artifact@v7
139139
with:
140140
name: sdist
141141
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@v6
30+
uses: actions/upload-artifact@v7
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@v6
54+
uses: actions/upload-artifact@v7
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@v6
77+
uses: actions/upload-artifact@v7
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@v6
97+
uses: actions/upload-artifact@v7
9898
with:
9999
name: sdist
100100
path: dist

0 commit comments

Comments
 (0)