From 14c252e0fb77a0fc7088e319809508e2e1bd53bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:01:22 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d15db5c..5f018e62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,13 +35,13 @@ jobs: with: dotnet-version: "8.0.x" - run: dotnet pack NGitLab.sln --configuration Release --output ${{env.NuGetDirectory}} /bl - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: nuget if-no-files-found: error retention-days: 7 path: ${{env.NuGetDirectory}}/**/* - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: binlogs if-no-files-found: error @@ -84,7 +84,7 @@ jobs: - name: Run tests run: dotnet test --configuration ${{matrix.configuration}} --logger trx --results-directory "${{env.TestResultsDirectory}}" --collect:"XPlat Code Coverage" /p:RunAnalyzers=false - name: Upload test results - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 if: always() with: name: ${{steps.set-artifact-name.outputs.artifact_name}} @@ -107,7 +107,7 @@ jobs: contents: read packages: write steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: nuget path: ${{env.NuGetDirectory}}