Skip to content

Commit

Permalink
Fix actions/upload-artifact deprecation
Browse files Browse the repository at this point in the history
Summary:
X-link: facebookincubator/zstrong#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: facebook/folly#2284

Reviewed By: yfeldblum

Differential Revision: D61730024

Pulled By: Orvid

fbshipit-source-id: 37eb13c6257a233ae170aa44aadeeb35a01568b1
  • Loading branch information
mszabo-wikia authored and facebook-github-bot committed Aug 30, 2024
1 parent 8046695 commit e3e2f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/fbcode_builder/getdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ def write_job_for_platform(self, platform, args): # noqa: C901
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")
Expand Down

0 comments on commit e3e2f56

Please sign in to comment.