From 47117bca2af2ffe1d7362cb41d3e88ed19162196 Mon Sep 17 00:00:00 2001 From: sunyab Date: Tue, 4 Feb 2025 13:21:55 -0800 Subject: [PATCH] Update BuildUSD action to use upload-artifacts@v4 on Windows upload-artifacts@v3 had previously been deprecated and was disabled as of January 30th per: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ The bug that prevented us from using v4 earlier on Windows appears to have been fixed. (Internal change: 2355870) --- .github/workflows/buildusd.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/buildusd.yml b/.github/workflows/buildusd.yml index a5d8485e81..c6b5724c0a 100644 --- a/.github/workflows/buildusd.yml +++ b/.github/workflows/buildusd.yml @@ -184,9 +184,7 @@ jobs: USDinst key: ${{ runner.os }}-BuildUSD-py${{ env.PYTHON_VERSION }}-${{ hashFiles('build_scripts/**/*') }} - name: Upload artifacts - # use v3 because actions/upload-artifact@v4 fails - # see https://github.com/actions/upload-artifact/issues/485 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: usd-win64 path: USDinst \ No newline at end of file