Skip to content

Commit

Permalink
Merge pull request #304 from jfdenise/main
Browse files Browse the repository at this point in the history
Update upload-artifact to v4, should fix compatibility issue introduced with download-artifact v4
  • Loading branch information
jfdenise authored Sep 6, 2024
2 parents e902281 + b974e56 commit c10f944
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
run: |
cd ~
find ./.m2/repository -type d -name "*SNAPSHOT" -print0 | xargs -0 tar -czf ~/galleon-plugins-maven-repository.tar.gz
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: matrix.java == '11'
with:
name: galleon-plugins-maven-repository
path: ~/galleon-plugins-maven-repository.tar.gz
retention-days: 5
- name: Upload Test Reports on Failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
run: mvn clean install -Dversion.org.wildfly.galleon-plugins=${{needs.galleon-plugins-build.outputs.galleon-plugins-version}}
shell: bash
- name: Upload Test Reports on Failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}
Expand Down

0 comments on commit c10f944

Please sign in to comment.