diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ea50ff6..694f349 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build Writerside docs using Docker uses: JetBrains/writerside-github-action@v4 @@ -38,18 +38,21 @@ jobs: artifact: ${{ env.ARTIFACT }} docker-version: ${{ env.DOCKER_VERSION }} + - name: ls + run: find + - name: Upload documentation - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: docs path: | artifacts/${{ env.ARTIFACT }} artifacts/report.json - retention-days: 7 + retention-days: 7 # Add the step below to upload Algolia indexes - name: Upload algolia-indexes - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: algolia-indexes path: artifacts/${{ env.ALGOLIA_ARTIFACT }} @@ -63,7 +66,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download artifacts - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: docs path: . @@ -85,7 +88,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: docs path: . @@ -97,13 +100,13 @@ jobs: run: unzip -O UTF-8 -qq artifacts/${{ env.ARTIFACT }} -d dir - name: Setup Pages - uses: actions/configure-pages@v2 + uses: actions/configure-pages@v4 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: dir - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 \ No newline at end of file + uses: actions/deploy-pages@v4 \ No newline at end of file