From e8c6ec45c7c63062074eaab96f8feb57409dffe6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2026 18:43:35 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/dotnet-security-scan.yml | 2 +- .github/workflows/integration-tests.yml | 4 ++-- .github/workflows/license-compliance.yml | 2 +- .github/workflows/sbom-generation.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dotnet-security-scan.yml b/.github/workflows/dotnet-security-scan.yml index 7df3b63b..640b3f19 100644 --- a/.github/workflows/dotnet-security-scan.yml +++ b/.github/workflows/dotnet-security-scan.yml @@ -63,7 +63,7 @@ jobs: # Upload results - name: Upload scan results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: security-scan-results diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 050ce604..1e79756e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -120,7 +120,7 @@ jobs: comment_title: Integration Test Results (K8s ${{ env.KUBERNETES_VERSION }}) - name: Upload test results as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: integration-test-results-k8s-${{ env.KUBERNETES_VERSION }} @@ -165,7 +165,7 @@ jobs: kind export logs ./kind-logs --name ${{ env.KIND_CLUSTER_NAME }} - name: Upload kind logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: kind-logs-k8s-${{ env.KUBERNETES_VERSION }} diff --git a/.github/workflows/license-compliance.yml b/.github/workflows/license-compliance.yml index da9ed00c..be62e545 100644 --- a/.github/workflows/license-compliance.yml +++ b/.github/workflows/license-compliance.yml @@ -66,7 +66,7 @@ jobs: continue-on-error: true - name: Upload license reports - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: license-compliance-reports path: license-reports/ diff --git a/.github/workflows/sbom-generation.yml b/.github/workflows/sbom-generation.yml index a121815c..0dab5381 100644 --- a/.github/workflows/sbom-generation.yml +++ b/.github/workflows/sbom-generation.yml @@ -53,7 +53,7 @@ jobs: continue-on-error: true - name: Upload SBOM artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: sbom-artifacts path: sbom/ diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 4f858f01..7814cee7 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -101,7 +101,7 @@ jobs: -verbosity:Warning - name: Upload coverage report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: matrix.dotnet-version == '8.0.x' with: name: coverage-report-net8 @@ -117,7 +117,7 @@ jobs: fi - name: Upload test results as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: always() with: name: unit-test-results-${{ matrix.dotnet-version }}