Skip to content

Commit

Permalink
Update upload-artifact action in CI workflow
Browse files Browse the repository at this point in the history
Switched from version 2.2.4 to version 4 of the upload-artifact action in the GitHub Actions CI workflow. This update ensures compatibility with the latest features and improvements provided in the newer version.
  • Loading branch information
khalidabuhakmeh authored and van800 committed Sep 13, 2024
1 parent 55a469b commit 7d50515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
working-directory: rider
run: ./gradlew -PBuildConfiguration=Release -PbuildNumber=${{ github.run_number }} test
- name: Upload Test Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}.test-results
path: build/reports/tests
if: ${{ always() }}
- name: Upload Test Logs
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}.test-logs
path: build/idea-sandbox/system-test/log
Expand Down

0 comments on commit 7d50515

Please sign in to comment.