From 60f2ee6ec58331f92078a80973b54e08d563786a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 06:02:02 +0000 Subject: [PATCH] Bump the actions-deps group with 4 updates Bumps the actions-deps group with 4 updates: [mukunku/tag-exists-action](https://github.com/mukunku/tag-exists-action), [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `mukunku/tag-exists-action` from 1.6.0 to 1.7.0 - [Release notes](https://github.com/mukunku/tag-exists-action/releases) - [Commits](https://github.com/mukunku/tag-exists-action/compare/v1.6.0...v1.7.0) Updates `actions/cache` from 4 to 5 - [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/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6.0.0...v7.0.0) --- updated-dependencies: - dependency-name: mukunku/tag-exists-action dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/release-pipeline.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index 46d42fa..79951b2 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Retrieve tag exists flag - uses: mukunku/tag-exists-action@v1.6.0 + uses: mukunku/tag-exists-action@v1.7.0 id: checkTag with: tag: ${{ github.event.inputs.version }} @@ -75,7 +75,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: 'Cache Maven packages' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -85,7 +85,7 @@ jobs: run: mvn -B -ntp -Pnative-plugin package - name: 'Upload build artifact' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts path: | @@ -110,7 +110,7 @@ jobs: git checkout --progress --force refs/tags/${{ github.event.inputs.version }} - name: 'Download all build artifacts' - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 - name: 'Set up Java' uses: actions/setup-java@v5 @@ -119,7 +119,7 @@ jobs: distribution: ${{ env.JAVA_DISTRO }} - name: 'Cache Maven packages' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}