From c591e02125d5510e9b153ead3b8134b02caf16b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 10:15:51 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `crazy-max/ghaction-github-labeler` from 5 to 6 - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Commits](https://github.com/crazy-max/ghaction-github-labeler/compare/v5...v6) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/repo-labels-sync.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/repo-labels-sync.yml b/.github/workflows/repo-labels-sync.yml index 58e2c89..f1d3238 100644 --- a/.github/workflows/repo-labels-sync.yml +++ b/.github/workflows/repo-labels-sync.yml @@ -27,7 +27,7 @@ jobs: uses: actions/checkout@v6 - name: Run Labeler - uses: crazy-max/ghaction-github-labeler@v5 + uses: crazy-max/ghaction-github-labeler@v6 with: github-token: ${{ secrets.GITHUB_TOKEN }} yaml-file: .github/labels.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 69ea9ee..a74adfa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: make test-ci PYTEST_ARGS="--junitxml=reports/junit/python${{ matrix.python-version }}.xml" - name: Upload coverage results - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: success() || failure() with: name: coverage-${{ matrix.python-version }}-os-${{ matrix.os }} @@ -84,7 +84,7 @@ jobs: uses: actions/checkout@v6 - name: Download all coverage reports - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: reports/ pattern: coverage-*