From acc9b7aa149bc64ee620a2d9ef785564d6d30295 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 04:23:27 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 4 to 7 in /.github/workflows 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/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c32576b..4c09849 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: - name: Test run: dotnet test --configuration Release --no-build --verbosity normal --filter "Category!=Integration" --logger "trx;LogFileName=test-results.trx" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: always() with: name: test-results-${{ matrix.os }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e96956..11c937f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,7 @@ jobs: tar -C dist/cli -czf "artifacts/cytrus-cli-$VERSION-${{ matrix.rid }}.tar.gz" . tar -C dist/app -czf "artifacts/cytrus-app-$VERSION-${{ matrix.rid }}.tar.gz" . - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: cytrus-${{ matrix.rid }} path: artifacts/*