Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/pr-voter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
needs:
- rebase
steps:
- uses: actions/download-artifact@v4.2.1
- uses: actions/download-artifact@v5.0.0
with:
name: rebased-project
- name: Setup Java
Expand All @@ -48,7 +48,7 @@ jobs:
needs:
- rebase
steps:
- uses: actions/download-artifact@v4.2.1
- uses: actions/download-artifact@v5.0.0
with:
name: rebased-project
- name: Build Documentation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
git checkout --orphan $ACTIONS_BRANCH || (git branch -D $ACTIONS_BRANCH && git checkout --orphan $ACTIONS_BRANCH)
git rm -rf .
git clean -fxd
- uses: actions/download-artifact@v4.2.1
- uses: actions/download-artifact@v5.0.0
with:
name: ${{ inputs.name }}_actions-build
- env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ jobs:
git rm -rf $DOC_RELEASE_FOLDER || true
git clean -fxd || true
mkdir -p $DOC_RELEASE_FOLDER
- uses: actions/download-artifact@v4.2.1
- uses: actions/download-artifact@v5.0.0
with:
name: documentation-build
path: ${{ env.tag }}
- uses: actions/download-artifact@v4.2.1
- uses: actions/download-artifact@v5.0.0
with:
name: javadoc-build
path: ${{ env.tag }}/javadoc
Expand Down