Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
run: ./scripts/retry.sh mvn -B -ntp test -Dtest=${{ matrix.test }} -DfailIfNoTests=false

- name: Upload jacoco artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.test }}-jacoco-artifact
path: '**/*.exec'
Expand All @@ -118,7 +118,7 @@ jobs:
mkdir artifacts
find . -type d -name "*surefire*" -exec cp --parents -R {} artifacts/ \;
zip -r ${{ matrix.test }}-artifacts.zip artifacts
- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
name: upload surefire-artifacts
if: failure()
with:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
run: mvn clean install -DskipTests

- name: Download jacoco artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: mqtt-broker/target

Expand Down
Loading