From fa2b5a3e912e59cff83e13cb33716ce68b1241b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Jan 2026 16:31:13 +0000 Subject: [PATCH] ci(deps): bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02f496c..6c58869 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: check_name: JUnit Test Report - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() with: name: build-reports @@ -86,7 +86,7 @@ jobs: retention-days: 30 - name: Upload JaCoCo coverage report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: always() with: name: jacoco-report @@ -137,7 +137,7 @@ jobs: run: ./gradlew dependencies --no-daemon > dependencies.txt - name: Upload dependency report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dependency-report path: dependencies.txt