Skip to content

Commit

Permalink
fix ci actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed Sep 22, 2024
1 parent 8ee8158 commit 8bd2734
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/compilation-check-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:

.publish_test_report: &publish_test_report
name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: '**/build/test-results/**/TEST-*.xml'
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
shell: bash

- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: maven
path: ~/.m2/repository/dev/icerock
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/compilation-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ jobs:
run: ./gradlew publishToMavenLocal
shell: bash
- name: Upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: maven
path: ~/.m2/repository/dev/icerock
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: cd samples/android-mpp-app && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
run: cd samples/auto-manifest && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
run: cd samples/compose-jvm-app && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
run: cd samples/resources-gallery && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
run: cd samples/default-hierarchy-gallery-mobile && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
run: cd samples/ios-static-xcframework && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:
run: cd samples/ios-cocoapods-static-framework && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -395,7 +395,7 @@ jobs:
run: cd samples/kotlin-ios-app && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -441,7 +441,7 @@ jobs:
run: cd samples/compose-resources-gallery && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -487,7 +487,7 @@ jobs:
run: cd samples/kotlin-2-sample && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
run: cd samples/cm-resources-sample && ./local-check.sh
shell: bash
- name: Publish Test Report
uses: mikepenz/action-junit-report@v2
uses: mikepenz/action-junit-report@v4
if: ${{ always() }}
with:
report_paths: "**/build/test-results/**/TEST-*.xml"
Expand Down

0 comments on commit 8bd2734

Please sign in to comment.