Skip to content

Commit

Permalink
Merge pull request #552 from kennethshackleton/address-upload-artifac…
Browse files Browse the repository at this point in the history
…t-deprecation

Address deprecation of GitHub actions/upload-artifact@v3, update to v4.
  • Loading branch information
kennethshackleton committed Sep 1, 2024
2 parents 2204e07 + 982af2f commit b46a504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ jobs:
run: ./gradlew licensee --no-configuration-cache
- name: 'Analyse'
run: ./gradlew detekt ktlintCheck lint -x lintRelease ${{ env.SCAN }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: 'Analyses'
path: |
**/build/reports/detekt
- name: 'Unit tests'
run: ./gradlew :selekt-android:testDebugUnitTest :selekt-java:test :koverHtmlReport -x integrationTest ${{ env.SCAN }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: 'Unit test and coverage reports'
Expand Down

0 comments on commit b46a504

Please sign in to comment.