Skip to content

Commit

Permalink
Merge pull request #1970 from ably/fix/1969-upload-artifact-version-u…
Browse files Browse the repository at this point in the history
…pdate

Updated version for the `upload-artifact` action to v4
  • Loading branch information
maratal committed Sep 11, 2024
2 parents 01e425d + 565c7ad commit 80f05fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,23 +91,23 @@ jobs:
- name: Upload Static Analyzer Reports
if: ${{ failure() && steps.analyzer-output.outcome == 'failure' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: static-analyzer-reports-${{ matrix.lane }}
path: ./derived_data/**/report-*.html

- name: Upload Xcodebuild Logs
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: xcodebuild-logs
name: xcodebuild-logs-${{ matrix.lane }}
path: ~/Library/Developer/Xcode/DerivedData/*/Logs

- name: Upload Test Output
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test-output
name: test-output-${{ matrix.lane }}
path: fastlane/test_output

- name: Upload Test Results
Expand Down

0 comments on commit 80f05fd

Please sign in to comment.