From dac081a8a3891fc38f650ec0dd5aad1c1a02fdac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 09:52:43 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-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/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 342d4cd9d24..00b68c749dc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: run: ../mvnw dev.morphia.morphia:critter-maven:generate-test-models - name: Cache build artifacts - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | **/target @@ -56,7 +56,7 @@ jobs: key: target-${{ steps.maven-cache-key.outputs.key }} - name: Collect logs - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: failure() with: name: "logs-${{ github.sha }}-${{ github.run_id }}" @@ -213,7 +213,7 @@ jobs: DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} - name: Upload JaCoCo reports - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: always() with: name: "test-coverage-${{ matrix.mapper }}-${{ github.run_id }}"