diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index a2f9b23..eae3cb9 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -31,13 +31,13 @@ jobs: VERSION: ${{ steps.version.outputs.VERSION_NAME }} - name: Publish to github pages if: ${{ github.event_name == 'push' }} - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./tools/generated destination_dir: ${{ steps.version.outputs.VERSION_NAME }} - name: Upload zip - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ac-library path: tools/ac-library.zip \ No newline at end of file diff --git a/.github/workflows/expander.yml b/.github/workflows/expander.yml index 1f7049c..3fef573 100644 --- a/.github/workflows/expander.yml +++ b/.github/workflows/expander.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }}