Skip to content

Commit da1d4e8

Browse files
Bump actions/upload-artifact from 5 to 6 (#125)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 10a3493 commit da1d4e8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python3 -m pip install --upgrade pip build
3131
python3 -m build
3232
- name: Upload wheels
33-
uses: actions/upload-artifact@v5
33+
uses: actions/upload-artifact@v6
3434
with:
3535
name: wheels
3636
path: dist/*.whl

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
mypy --config-file pyproject.toml --junit-xml mypy-${{ matrix.python-version }}.xml .
7272
- name: Upload Unit Test Results
7373
if: always()
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: MyPy Test Results (Python ${{ matrix.python-version }})
7777
path: mypy-${{ matrix.python-version }}.xml
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: Upload
84-
uses: actions/upload-artifact@v5
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: Event File
8787
path: ${{ github.event_path }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- run: mv test_reports/all.xml test_reports/pytest-${{ matrix.python-version }}.xml
5454
- name: Upload Test Results
5555
if: always()
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
with:
5858
name: "Pytest Test Results (Python ${{ matrix.python-version }})"
5959
path: test_reports/pytest-${{ matrix.python-version }}.xml
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Upload
67-
uses: actions/upload-artifact@v5
67+
uses: actions/upload-artifact@v6
6868
with:
6969
name: Event File
7070
path: ${{ github.event_path }}

0 commit comments

Comments
 (0)