diff --git a/.github/workflows/fbgemm_gpu_ci_cuda.yml b/.github/workflows/fbgemm_gpu_ci_cuda.yml index 519987bbc4..782a6e72bd 100644 --- a/.github/workflows/fbgemm_gpu_ci_cuda.yml +++ b/.github/workflows/fbgemm_gpu_ci_cuda.yml @@ -125,7 +125,7 @@ jobs: - name: Upload Built Wheel as GHA Artifact # Cannot upgrade to actions/upload-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fbgemm_gpu_nightly_cuda_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl path: fbgemm_gpu/dist/*.whl @@ -166,13 +166,13 @@ jobs: steps: # Cannot upgrade to actions/checkout@v4 yet because GLIBC on the instance is too old - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Download Wheel Artifact from GHA # Cannot upgrade to actions/download-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fbgemm_gpu_nightly_cuda_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl diff --git a/.github/workflows/fbgemm_gpu_ci_genai.yml b/.github/workflows/fbgemm_gpu_ci_genai.yml index d7a506d3c2..8c03a3a488 100644 --- a/.github/workflows/fbgemm_gpu_ci_genai.yml +++ b/.github/workflows/fbgemm_gpu_ci_genai.yml @@ -125,7 +125,7 @@ jobs: - name: Upload Built Wheel as GHA Artifact # Cannot upgrade to actions/upload-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fbgemm_gpu_nightly_genai_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl path: fbgemm_gpu/dist/*.whl @@ -165,13 +165,13 @@ jobs: steps: # Cannot upgrade to actions/checkout@v4 yet because GLIBC on the instance is too old - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Download Wheel Artifact from GHA # Cannot upgrade to actions/download-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fbgemm_gpu_nightly_genai_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl diff --git a/.github/workflows/fbgemm_gpu_ci_genai_generic_infra.yml b/.github/workflows/fbgemm_gpu_ci_genai_generic_infra.yml index d028d23474..765893f888 100644 --- a/.github/workflows/fbgemm_gpu_ci_genai_generic_infra.yml +++ b/.github/workflows/fbgemm_gpu_ci_genai_generic_infra.yml @@ -116,7 +116,7 @@ jobs: - name: Upload Built Wheel as GHA Artifact # Cannot upgrade to actions/upload-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fbgemm_gpu_nightly_genai_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl path: fbgemm_gpu/dist/*.whl @@ -167,7 +167,7 @@ jobs: - name: Download Wheel Artifact from GHA # Cannot upgrade to actions/download-artifact@v4 yet because GLIBC on the instance is too old - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fbgemm_gpu_nightly_genai_${{ matrix.host-machine.arch }}_${{ matrix.compiler }}_py${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl diff --git a/.github/workflows/fbgemm_gpu_ci_rocm.yml b/.github/workflows/fbgemm_gpu_ci_rocm.yml index bc2a868c29..5e96818c62 100644 --- a/.github/workflows/fbgemm_gpu_ci_rocm.yml +++ b/.github/workflows/fbgemm_gpu_ci_rocm.yml @@ -166,7 +166,7 @@ jobs: git config --global --add safe.directory '*' - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Wheel Artifact from GHA uses: actions/download-artifact@v4 diff --git a/.github/workflows/fbgemm_gpu_pip.yml b/.github/workflows/fbgemm_gpu_pip.yml index 260776dfd4..01d755077a 100644 --- a/.github/workflows/fbgemm_gpu_pip.yml +++ b/.github/workflows/fbgemm_gpu_pip.yml @@ -130,7 +130,7 @@ jobs: steps: # Cannot upgrade to actions/checkout@v4 yet because GLIBC on the instance is too old - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install NVIDIA Drivers and NVIDIA-Docker Runtime uses: pytorch/test-infra/.github/actions/setup-nvidia@main diff --git a/.github/workflows/fbgemm_gpu_release_cuda.yml b/.github/workflows/fbgemm_gpu_release_cuda.yml index 4a09693f43..dd168a9c94 100644 --- a/.github/workflows/fbgemm_gpu_release_cuda.yml +++ b/.github/workflows/fbgemm_gpu_release_cuda.yml @@ -119,7 +119,7 @@ jobs: run: . $PRELUDE; cd fbgemm_gpu; build_fbgemm_gpu_package $BUILD_ENV release cuda - name: Upload Built Wheel as GHA Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fbgemm_gpu_release_cuda_${{ matrix.host-machine.arch }}_${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl path: fbgemm_gpu/dist/*.whl @@ -151,10 +151,10 @@ jobs: steps: - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Wheel Artifact from GHA - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fbgemm_gpu_release_cuda_${{ matrix.host-machine.arch }}_${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl diff --git a/.github/workflows/fbgemm_gpu_release_genai.yml b/.github/workflows/fbgemm_gpu_release_genai.yml index 1e33070e54..473f3ce2d5 100644 --- a/.github/workflows/fbgemm_gpu_release_genai.yml +++ b/.github/workflows/fbgemm_gpu_release_genai.yml @@ -119,7 +119,7 @@ jobs: run: . $PRELUDE; cd fbgemm_gpu; build_fbgemm_gpu_package $BUILD_ENV release genai - name: Upload Built Wheel as GHA Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fbgemm_gpu_release_genai_${{ matrix.host-machine.arch }}_${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl path: fbgemm_gpu/dist/*.whl @@ -151,10 +151,10 @@ jobs: steps: - name: Checkout the Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Wheel Artifact from GHA - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: fbgemm_gpu_release_genai_${{ matrix.host-machine.arch }}_${{ matrix.python-version }}_cu${{ matrix.cuda-version }}.whl