From 3e1f46f56f86343ad9f84ed9444a85c71d234a9f Mon Sep 17 00:00:00 2001 From: Michalina Date: Mon, 3 Feb 2025 10:13:48 +0100 Subject: [PATCH] Update version of `upload-artifact` and `dowload-artifact` to `v4` The `v3` of the `actions/upload-artifact` and `actions/download-artifact` actions got [deprecated](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/) causing possible failure of workflow execution. We're upgrading to `v4` of the actions. Although there are some breaking changes in `v4` compared to `v3`, they do not affect our setup. --- .github/workflows/dashboard-mainnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dashboard-mainnet.yml b/.github/workflows/dashboard-mainnet.yml index 5071f28d3..06cff5818 100644 --- a/.github/workflows/dashboard-mainnet.yml +++ b/.github/workflows/dashboard-mainnet.yml @@ -84,7 +84,7 @@ jobs: GOOGLE_TAG_MANAGER_SUPPORT: true GOOGLE_TAG_MANAGER_ID: ${{ secrets.GOOGLE_TAG_MANAGER_ID }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: build path: build @@ -97,7 +97,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Deploy PR mainnet preview to GCP # Temporarily we run the action in version from `alpine-version-413.0.0` @@ -123,7 +123,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Deploy mainnet build to GCP # Temporarily we run the action in version from `alpine-version-413.0.0`