Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cross-platform-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: ./gradlew runIos
- name: Archive Test Results
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: ios-test-results
path: Users/runner/Library/Developer/Xcode/DerivedData
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload artifacts on failure
if: failure()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: integration-test-artifacts
path: ${{ env.WORKING_DIRECTORY }}/artifacts/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
rm -rf archives

- name: Upload xcframework artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Upload v7 paired with download v4 version mismatch

High Severity

The upload-artifact action was upgraded to v7 in the build-kits job, but the corresponding download-artifact in the mirror-and-release-kits job remains at @v4. GitHub's documentation states that uploads and downloads must use the same major action versions. The build-kits job uploads xcframework artifacts that mirror-and-release-kits later downloads — if these versions are incompatible, the entire release pipeline will fail silently or with an error at artifact download time.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit c761787. Configure here.

with:
name: xcframework-${{ matrix.kit.name }}
path: xcframeworks/*.xcframework.zip
Expand Down
Loading