Skip to content

Commit 6455a84

Browse files
robhoganfacebook-github-bot
authored andcommitted
Update GHA actions/upload-artifact to v4, unbreak CI (#1799)
Summary: Pull Request resolved: #1799 Pull Request resolved: #1800 `actions/upload-artifact@v3` is deprecated and will no longer execute, causing CI to fail - eg: https://github.com/facebook/yoga/actions/runs/13789185831/job/38564343959 See https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ for context Reviewed By: NickGerleman Differential Revision: D70986391 fbshipit-source-id: 66cec50bb485e89c0948c752ba7dc2a4f42617d6
1 parent 1b7d2c8 commit 6455a84

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/publish-android-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }}
2525

2626
- name: Upload Build Artifacts
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: 'snapshot-artifacts'
3030
path: '~/.m2/repository/'

.github/workflows/publish-android-snashot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
ORG_GRADLE_PROJECT_USE_SNAPSHOT: true
2424

2525
- name: Upload Build Artifacts
26-
uses: actions/upload-artifact@v3
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: 'snapshot-artifacts'
2929
path: '~/.m2/repository/'

.github/workflows/validate-js.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
run: yarn pack --filename yoga-layout.tar.gz
111111
working-directory: javascript
112112

113-
- uses: actions/upload-artifact@v3
113+
- uses: actions/upload-artifact@v4
114114
with:
115115
name: npm-package
116116
path: javascript/yoga-layout.tar.gz

0 commit comments

Comments
 (0)