From 8bfe135db9baea69d508851e6cea965b3683f473 Mon Sep 17 00:00:00 2001 From: DMarinhoCodacy Date: Fri, 6 Feb 2026 14:22:18 +0000 Subject: [PATCH 1/2] fix personal tokens on mkdocs.yml file --- .github/workflows/mkdocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index 2ee8ee1cfb..77a01ae50e 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout code uses: actions/checkout@v6 with: - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }} submodules: true # git-revision-date-localized-plugin and mkdocs-rss-plugin need full git history depth fetch-depth: 0 @@ -96,7 +96,7 @@ jobs: uses: peaceiris/actions-gh-pages@v4 if: github.ref == 'refs/heads/master' with: - personal_token: ${{ secrets.GITHUB_TOKEN }} + personal_token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }} publish_dir: ./site destination_dir: ./ keep_files: true From 48cd6cfe79b94530ce8ebfcc9269ca64f57b0b5f Mon Sep 17 00:00:00 2001 From: DMarinhoCodacy Date: Fri, 6 Feb 2026 14:38:07 +0000 Subject: [PATCH 2/2] fix personal tokens on mkdocs.yml file --- .github/workflows/mkdocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mkdocs.yml b/.github/workflows/mkdocs.yml index 77a01ae50e..feb8d641a9 100644 --- a/.github/workflows/mkdocs.yml +++ b/.github/workflows/mkdocs.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout code uses: actions/checkout@v6 with: - token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} submodules: true # git-revision-date-localized-plugin and mkdocs-rss-plugin need full git history depth fetch-depth: 0 @@ -96,7 +96,7 @@ jobs: uses: peaceiris/actions-gh-pages@v4 if: github.ref == 'refs/heads/master' with: - personal_token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./site destination_dir: ./ keep_files: true