Update GHA actions/upload-artifact to v4, unbreak CI (#1799)
Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1799 Pull Request resolved: https://github.com/facebook/yoga/pull/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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
1b7d2c8d48
commit
6455a848a7
@@ -24,7 +24,7 @@ jobs:
|
||||
ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }}
|
||||
|
||||
- name: Upload Build Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: 'snapshot-artifacts'
|
||||
path: '~/.m2/repository/'
|
||||
|
@@ -23,7 +23,7 @@ jobs:
|
||||
ORG_GRADLE_PROJECT_USE_SNAPSHOT: true
|
||||
|
||||
- name: Upload Build Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: 'snapshot-artifacts'
|
||||
path: '~/.m2/repository/'
|
||||
|
2
.github/workflows/validate-js.yml
vendored
2
.github/workflows/validate-js.yml
vendored
@@ -110,7 +110,7 @@ jobs:
|
||||
run: yarn pack --filename yoga-layout.tar.gz
|
||||
working-directory: javascript
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: npm-package
|
||||
path: javascript/yoga-layout.tar.gz
|
||||
|
Reference in New Issue
Block a user