From 22c149b3db57539183911db534f5e18a6caf914a Mon Sep 17 00:00:00 2001 From: Marat Al Date: Fri, 6 Sep 2024 11:52:52 +0200 Subject: [PATCH] Updated version for the `upload-artifact` action to v4 since CI is now failing with the older ones. --- .github/workflows/integration-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 60d098019..c66be9fc3 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -91,21 +91,21 @@ 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 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 path: fastlane/test_output