From 879664a286af84563491f7ce8d65ca101c42b650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Szab=C3=B3?= Date: Thu, 29 Aug 2024 18:07:25 -0700 Subject: [PATCH] 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 --- build/fbcode_builder/getdeps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/fbcode_builder/getdeps.py b/build/fbcode_builder/getdeps.py index dfb028a94..ae12922f0 100755 --- a/build/fbcode_builder/getdeps.py +++ b/build/fbcode_builder/getdeps.py @@ -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")