From 24b176c51b1f3507f56a70d96ae1d2fbd24b063c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:03:02 +0000 Subject: [PATCH] Bump actions/cache from 5.0.5 to 6.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.0.0. - [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/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 5d7e4213..f0b11f32 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -77,7 +77,7 @@ jobs: echo "atlassian-version=${JIRA_VERSION}" >> $GITHUB_OUTPUT - name: Restore Atlassian Maven Cache if: github.ref == 'refs/heads/camel-quarkus-main' || github.base_ref == 'camel-quarkus-main' - uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/restore@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 with: path: | ~/.m2/repository/com/atlassian @@ -89,7 +89,7 @@ jobs: cd ${{ runner.temp }}/camel-quarkus ./mvnw ${MAVEN_ARGS} clean install -Dquickly -T1C - name: Save Atlassian Maven Cache - uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 + uses: actions/cache/save@2c8a9bd7457de244a408f35966fab2fb45fda9c8 # v6.0.0 if: github.ref == 'refs/heads/camel-quarkus-main' || github.base_ref == 'camel-quarkus-main' with: path: |