diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 9541799..ac32652 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -26,9 +26,9 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - name: npm ci, build and test @@ -36,7 +36,7 @@ jobs: npm ci npm run build --if-present - name: deploy to gh-pages - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: - personal_token: ${{ secrets.PERSONAL_TOKEN }} + personal_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build \ No newline at end of file