From 47bb4464b63f877d49f0541a3152729add852d07 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Fri, 6 Sep 2024 10:37:22 -0700 Subject: [PATCH] Update download-artifact (#4783) Summary: NPM publish is failing with Screenshot 2024-09-06 at 10 05 09 AM Looks like this is symmetrical to tobias-tengler's https://github.com/facebook/relay/pull/4781 Pull Request resolved: https://github.com/facebook/relay/pull/4783 Reviewed By: lynnshaoyu Differential Revision: D62306004 Pulled By: captbaritone fbshipit-source-id: 18d93cf7be533e260abb62f887e04f0ddbd6a1d7 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cde96b0bca51..0f2e9b62aec8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -230,27 +230,27 @@ jobs: - name: Install dependencies run: yarn install --frozen-lockfile --ignore-scripts - name: Download artifact relay-bin-linux-x64 - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: relay-bin-linux-x64 path: artifacts/linux-x64 - name: Download artifact relay-bin-linux-arm64 - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: relay-bin-linux-arm64 path: artifacts/linux-arm64 - name: Download artifact relay-bin-macos-x64 - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: relay-bin-macos-x64 path: artifacts/macos-x64 - name: Download artifact relay-bin-macos-arm64 - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: relay-bin-macos-arm64 path: artifacts/macos-arm64 - name: Download artifact relay-bin-win-x64 - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: relay-bin-win-x64 path: artifacts/win-x64