Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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') }}
Expand All @@ -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: |
Expand All @@ -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
Expand All @@ -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') }}
Expand Down