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
12 changes: 6 additions & 6 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 @@ -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: |
Expand Down Expand Up @@ -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: |
Expand All @@ -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
Expand All @@ -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') }}
Expand Down