From 8d7cb1742b541e0409c7eedfe8d3d0a49ec5b7cb Mon Sep 17 00:00:00 2001 From: Sunil Singh Date: Wed, 30 Oct 2024 13:23:32 -0700 Subject: [PATCH] Updating the action to remove unauthorized action and update to v4. Signed-off-by: Sunil Singh --- .github/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3258eaa1..aaa00508 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,9 +10,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout main docs repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Docusaurus - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18.x cache: yarn @@ -21,7 +21,7 @@ jobs: yarn install --frozen-lockfile yarn build - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + uses: actions/deploy-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build \ No newline at end of file