From efb31840d9682d6a78c29be55e51372b7c9723dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Saracca?= Date: Fri, 15 Nov 2024 14:28:16 -0300 Subject: [PATCH] chore: update upload and download to v4 in deploy action --- .github/workflows/deploy.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index df1e495d7..3afed30ad 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -61,10 +61,11 @@ jobs: if: ${{ github.event.inputs.infra_type == 'Payara' && github.event.inputs.basepath != '' }} run: npm run build -- --base=/${{ github.event.inputs.basepath }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: built-site path: ./dist + include-hidden-files: true deploy-to-s3: needs: build @@ -84,7 +85,7 @@ jobs: python -m pip install --upgrade pip pip install awscli - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: built-site path: ./dist @@ -111,7 +112,7 @@ jobs: distribution: 'zulu' java-version: '11' - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: built-site path: ./dist