From caafabef29f95def89f0f9b58709cc413306bf63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 11:07:30 +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/backend-ci.yml | 6 +++--- .github/workflows/ci.yml | 6 +++--- .github/workflows/worker-ci.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index 337397c..1e34c73 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -53,7 +53,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results path: | @@ -63,7 +63,7 @@ jobs: - name: Upload coverage report if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report path: codehive-backend/build/reports/jacoco/test/ @@ -71,7 +71,7 @@ jobs: - name: Upload build artifact if: github.event_name == 'push' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: codehive-backend path: codehive-backend/build/libs/*.jar diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c633aad..6e6ae94 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results path: | @@ -67,7 +67,7 @@ jobs: - name: Upload coverage reports if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: coverage-report path: codehive-backend/build/reports/jacoco/test/ @@ -103,7 +103,7 @@ jobs: run: ./gradlew build -x test - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: codehive-backend-jar path: codehive-backend/build/libs/*.jar diff --git a/.github/workflows/worker-ci.yml b/.github/workflows/worker-ci.yml index 5d7a7cc..279e5b6 100644 --- a/.github/workflows/worker-ci.yml +++ b/.github/workflows/worker-ci.yml @@ -45,7 +45,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: worker-test-results path: codehive-worker/build/reports/tests/test/ @@ -82,7 +82,7 @@ jobs: - name: Upload build artifact if: github.event_name == 'push' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: codehive-worker-jar path: codehive-worker/build/libs/*.jar