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') }}