Skip to content

Commit

Permalink
Update GitHub Artifact Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 13, 2024
1 parent fb6aaed commit 59e5bde
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
arguments: koverMergedXmlReport

- name: Archive Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'

- name: Archive Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-results
Expand All @@ -58,14 +58,14 @@ jobs:
arguments: mingwX64Test

- name: Archive Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'

- name: Archive Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-results
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
arguments: linuxX64Test

- name: Archive Reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: reports
path: '**/build/reports/*'

- name: Archive Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: test-results
Expand All @@ -112,7 +112,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Download kover reports
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: reports
- uses: codecov/codecov-action@v4
Expand All @@ -126,7 +126,7 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Download test results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test-results
- name: Publish Unit Test Results
Expand Down

0 comments on commit 59e5bde

Please sign in to comment.