diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 48735fb9c..3a65a6a2d 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@v7 + uses: actions/download-artifact@v8 with: name: 'build' path: 'build' diff --git a/.github/workflows/setup_and_build.yml b/.github/workflows/setup_and_build.yml index 98783735f..dba09eb50 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@v6 + uses: actions/upload-artifact@v7 with: name: 'build' path: 'build' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 857a76231..e0ea695cb 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@v7 + uses: actions/download-artifact@v8 with: name: 'build' path: 'build'