Skip to content

Commit 2358824

Browse files
ci: upgrade and pin actions/upload-artifact to v7.0.1 (#745)
* ci: upgrade and pin actions/upload-artifact to v7.0.1 Upgrades all three upload-artifact usages from @v4 / unpinned @v7 to a SHA-pinned @v7.0.1 (Node.js 24) to eliminate GitHub's deprecated Node.js 20 runner warnings and ensure supply-chain integrity. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * ci: upgrade and pin actions/download-artifact to v7.0.0 Upgrades download-artifact from @v4 to SHA-pinned @v7.0.0 to match the upload-artifact v7 upgrade and eliminate Node.js 20 deprecation warnings. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 1482d06 commit 2358824

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cross-platform-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: ./gradlew runIos
4141
- name: Archive Test Results
4242
if: always()
43-
uses: actions/upload-artifact@v7
43+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
4444
with:
4545
name: ios-test-results
4646
path: Users/runner/Library/Developer/Xcode/DerivedData

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
100100
- name: Upload artifacts on failure
101101
if: failure()
102-
uses: actions/upload-artifact@v7
102+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
103103
with:
104104
name: integration-test-artifacts
105105
path: ${{ env.WORKING_DIRECTORY }}/artifacts/

.github/workflows/release-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
rm -rf archives
201201
202202
- name: Upload xcframework artifacts
203-
uses: actions/upload-artifact@v4
203+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
204204
with:
205205
name: xcframework-${{ matrix.kit.name }}
206206
path: xcframeworks/*.xcframework.zip
@@ -224,7 +224,7 @@ jobs:
224224
persist-credentials: false
225225

226226
- name: Download xcframework artifacts
227-
uses: actions/download-artifact@v4
227+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
228228
with:
229229
name: xcframework-${{ matrix.kit.name }}
230230

0 commit comments

Comments
 (0)