diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index ad3fb35..61c6be8 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') }} @@ -88,7 +88,7 @@ jobs: run: mvn -B -ntp --file pom.xml -Pdist package -DskipTests - name: 'Upload build artifact' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-cli path: | @@ -119,7 +119,7 @@ jobs: mvn -B --file pom.xml -Ppublication - name: 'Upload build artifact' - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: artifacts-plugin path: | @@ -141,7 +141,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 @@ -150,7 +150,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') }}