diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f8d37cf29..cd01a4330 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download build artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: 'build' path: 'build' diff --git a/.github/workflows/setup_and_build.yml b/.github/workflows/setup_and_build.yml index c93482277..d5f093e30 100644 --- a/.github/workflows/setup_and_build.yml +++ b/.github/workflows/setup_and_build.yml @@ -33,7 +33,7 @@ jobs: - name: Build run: yarn build - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: 'build' path: 'build' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ffcd7729d..eb6ab4a99 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download build artifact - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: name: 'build' path: 'build'