From 3bc6a11dff7289a376b6aca6feacc0956523eb05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 19:58:18 +0000 Subject: [PATCH] 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/ci.yml | 2 +- .github/workflows/master_app-awapi-scrum-centralus-03.yml | 2 +- .github/workflows/sonar-scan.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dceb03..c8e1089 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: run: dotnet test --no-restore --no-build --collect:"XPlat Code Coverage" --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}" - name: Upload dotnet test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dotnet-results-${{ matrix.dotnet-version }} path: TestResults-${{ matrix.dotnet-version }} diff --git a/.github/workflows/master_app-awapi-scrum-centralus-03.yml b/.github/workflows/master_app-awapi-scrum-centralus-03.yml index 07b2c3b..8b5b19b 100644 --- a/.github/workflows/master_app-awapi-scrum-centralus-03.yml +++ b/.github/workflows/master_app-awapi-scrum-centralus-03.yml @@ -30,7 +30,7 @@ jobs: run: dotnet publish -c Release -o "${{env.DOTNET_ROOT}}/myapp" - name: Upload artifact for deployment job - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: .net-app path: ${{env.DOTNET_ROOT}}/myapp diff --git a/.github/workflows/sonar-scan.yml b/.github/workflows/sonar-scan.yml index 90ccd03..33671f9 100644 --- a/.github/workflows/sonar-scan.yml +++ b/.github/workflows/sonar-scan.yml @@ -51,7 +51,7 @@ jobs: dotnet-sonarscanner end /d:sonar.token="$SONAR_TOKEN" - name: Upload dotnet test results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: dotnet-results path: TestResults