diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 7595624a..f4350528 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -34,7 +34,7 @@ jobs: ./scripts/docs-config.sh master npm run docs - name: Release to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GH_AUTH_TOKEN }} publish_dir: dist/docs diff --git a/.github/workflows/publish-npm.yml b/.github/workflows/publish-npm.yml index 903ad690..f17246bd 100644 --- a/.github/workflows/publish-npm.yml +++ b/.github/workflows/publish-npm.yml @@ -93,7 +93,7 @@ jobs: VERSION: ${{ needs.setup.outputs.version }} - name: Release to GitHub Pages (version) - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GH_AUTH_TOKEN }} publish_dir: dist/docs @@ -120,7 +120,7 @@ jobs: - name: Release to GitHub Pages (latest) if: "!github.event.release.prerelease" - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GH_AUTH_TOKEN }} publish_dir: dist/docs @@ -128,7 +128,7 @@ jobs: - name: Release to GitHub Pages (next) if: "github.event.release.prerelease" - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GH_AUTH_TOKEN }} publish_dir: dist/docs