diff --git a/.github/workflows/advanced-deployment.yml b/.github/workflows/advanced-deployment.yml index 5a597b4..e00569d 100644 --- a/.github/workflows/advanced-deployment.yml +++ b/.github/workflows/advanced-deployment.yml @@ -164,7 +164,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: build-${{ github.event.inputs.environment }} path: ./ diff --git a/.github/workflows/ci-cd-old.yml b/.github/workflows/ci-cd-old.yml index 1b5f3be..4294ef6 100644 --- a/.github/workflows/ci-cd-old.yml +++ b/.github/workflows/ci-cd-old.yml @@ -322,7 +322,7 @@ jobs: cache: 'npm' - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist path: dist/ @@ -391,7 +391,7 @@ jobs: cache: 'npm' - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist path: dist/ diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index da382bc..ed1c170 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -361,7 +361,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist-${{ github.sha }} path: dist/ @@ -407,7 +407,7 @@ jobs: uses: actions/checkout@v4 - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: dist-${{ github.sha }} path: dist/ diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index e264ee0..1f2daed 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -157,7 +157,7 @@ jobs: steps: - name: Download all E2E results - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: pattern: e2e-results-* merge-multiple: true