1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

Fix actions/upload-artifact deprecation

Summary:
X-link: https://github.com/facebookincubator/zstrong/pull/970

actions/upload-artifact < v4 is deprecated and will not be supported after November 30, 2024.[1] Migrate to v4 instead -- the API used by fbcode_builder is not changed by this version bump.

[1] https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/

X-link: https://github.com/facebook/folly/pull/2284

Reviewed By: yfeldblum

Differential Revision: D61730024

Pulled By: Orvid

fbshipit-source-id: 37eb13c6257a233ae170aa44aadeeb35a01568b1
This commit is contained in:
Máté Szabó
2024-08-29 18:07:25 -07:00
committed by Facebook GitHub Bot
parent e3ef1f8a02
commit 879664a286

View File

@@ -1180,7 +1180,7 @@ jobs:
f"--final-install-prefix /usr/local\n"
)
out.write(" - uses: actions/upload-artifact@v2\n")
out.write(" - uses: actions/upload-artifact@v4\n")
out.write(" with:\n")
out.write(" name: %s\n" % manifest.name)
out.write(" path: _artifacts\n")