From 91bc101a3c5f81f23c6c0ab9b67f2cffc4275f00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 01:12:30 +0000 Subject: [PATCH] Bump actions/upload-artifact from 5 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...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] --- .github/workflows/check_prereleases.yml | 2 +- .github/workflows/main.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/check_prereleases.yml b/.github/workflows/check_prereleases.yml index 71b18ff466..ad4fcafe11 100644 --- a/.github/workflows/check_prereleases.yml +++ b/.github/workflows/check_prereleases.yml @@ -101,7 +101,7 @@ jobs: shell: bash - name: Upload Screenshots if: failure() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: Screenshots - Qt-Bindings ${{ matrix.qt-lib }} - ${{ matrix.os }}) path: ${{ env.SCREENSHOT_DIR }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8d06445066..87fc1dc347 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: run: | twine check "dist/*.whl" - name: Upload Wheel - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: wheel path: dist/*.whl @@ -57,7 +57,7 @@ jobs: dot_clean -m doc/pyqtgraph.docset - run: tar --exclude='.DS_Store' -cvzf pyqtgraph.tgz doc/pyqtgraph.docset - name: Upload docset - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: pyqtgraph.docset path: pyqtgraph.tgz @@ -197,7 +197,7 @@ jobs: pytest pyqtgraph/examples -v -n 2 shell: bash - name: Upload coverage data - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: coverage-data-${{ matrix.python-version }}-${{ matrix.qt-lib }}-${{ matrix.os }} path: .coverage.* @@ -205,7 +205,7 @@ jobs: include-hidden-files: true - name: Upload Screenshots if: failure() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: Screenshots (Python ${{ matrix.python-version }} - Qt-Bindings ${{ matrix.qt-lib }} - OS ${{ matrix.os }}) path: ${{ env.SCREENSHOT_DIR }} @@ -295,7 +295,7 @@ jobs: pytest pyqtgraph/examples -v -n 2 - name: Upload Screenshots if: failure() - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: Screenshots (Conda - Qt-Bindings ${{ matrix.qt-lib }} - OS ${{ matrix.os }}) path: ${{ env.SCREENSHOT_DIR }} @@ -336,7 +336,7 @@ jobs: # coverage report --fail-under=100 - name: Upload HTML report - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 with: name: html-report path: htmlcov