From 62959169970fdff9cad4b0017b776731e522355a Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Sun, 20 Apr 2025 02:46:49 +0900 Subject: [PATCH 1/4] update github actions --- .github/workflows/document.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index a2f9b23..be6403c 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -37,7 +37,7 @@ jobs: 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 From 47196432fbe13fc95c185543b27079a23f79f222 Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Sun, 20 Apr 2025 02:50:15 +0900 Subject: [PATCH 2/4] upgrade python version --- .github/workflows/expander.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }} From 7344efb11e8a92d319559671605a5f1f3cce28b8 Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Sun, 20 Apr 2025 02:54:33 +0900 Subject: [PATCH 3/4] update --- .github/workflows/document.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index be6403c..040affd 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -31,9 +31,9 @@ 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 }} + deploy_key: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./tools/generated destination_dir: ${{ steps.version.outputs.VERSION_NAME }} - name: Upload zip From 58ac3a8712a5516a1ebba933bc0f8174d7de6cf5 Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Sun, 20 Apr 2025 02:58:33 +0900 Subject: [PATCH 4/4] fix --- .github/workflows/document.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index 040affd..eae3cb9 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -33,7 +33,7 @@ jobs: if: ${{ github.event_name == 'push' }} uses: peaceiris/actions-gh-pages@v4 with: - deploy_key: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./tools/generated destination_dir: ${{ steps.version.outputs.VERSION_NAME }} - name: Upload zip