From 1683ebf2d56442e39f54b643a8668f89db39ef96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 18:24:14 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/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) --- 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/CI.yml | 10 +++++----- .github/workflows/integration-tests.yml | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d0eebc6fc..dbe23da76 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -76,7 +76,7 @@ jobs: # This is used by the subsequent publish-test-results.yml - name: Upload Unit Test Results if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: Unit Test Results path: src/OctoshiftCLI.Tests/unit-tests.xml @@ -84,7 +84,7 @@ jobs: # This is used by the subsequent publish-test-results.yml - name: Upload Code Coverage Report if: always() && matrix.runner-os == 'ubuntu-latest' && matrix.language == 'csharp' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: Code Coverage Report path: code-coverage-results.md @@ -101,7 +101,7 @@ jobs: steps: # This is used by the subsequent publish-test-results.yaml - name: Upload Event File - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: Event File path: ${{ github.event_path }} @@ -141,7 +141,7 @@ jobs: run: just publish-macos - name: Upload Binaries - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: binaries-${{ matrix.target-os }} path: | @@ -278,7 +278,7 @@ jobs: comment_mode: off - name: Upload test logs - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index d5c57f1cf..b2805fa7c 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -71,7 +71,7 @@ jobs: SKIP_LINUX: "true" - name: Upload Binaries - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: binaries-${{ matrix.target-os }} path: | @@ -213,7 +213,7 @@ jobs: commit: ${{ env.PR_SHA }} - name: Upload test logs - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: integration-test-logs-${{ matrix.source-vcs }}-${{ matrix.runner-os }}