From 57ffaddc589ca5bc9497f5d96f9a2a6f4b00d5e2 Mon Sep 17 00:00:00 2001 From: stay-foolish-forever Date: Fri, 26 Jun 2026 20:39:29 +0800 Subject: [PATCH 1/2] ci: update node version used by github actions to 24 --- .github/workflows/deploy-pages.yml | 4 ++-- .github/workflows/ocr-review.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 14e78220..cc691dcd 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -20,7 +20,7 @@ jobs: build: runs-on: self-hosted container: - image: node:20 + image: node:24 steps: - uses: actions/checkout@v4 @@ -51,7 +51,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: self-hosted container: - image: node:20 + image: node:24 needs: build steps: - name: Deploy to GitHub Pages diff --git a/.github/workflows/ocr-review.yml b/.github/workflows/ocr-review.yml index 4ffcc22d..2bf53f2e 100644 --- a/.github/workflows/ocr-review.yml +++ b/.github/workflows/ocr-review.yml @@ -63,7 +63,7 @@ jobs: code-review: runs-on: self-hosted container: - image: node:20 + image: node:24 if: github.event_name == 'pull_request_target' steps: - name: Checkout repository diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d75b028f..15b5ee19 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -149,7 +149,7 @@ jobs: needs: release runs-on: self-hosted container: - image: node:20 + image: node:24 permissions: contents: read steps: From 51d2dc0b6aa348988ef448d6d3d884aa53766195 Mon Sep 17 00:00:00 2001 From: stay-foolish-forever Date: Fri, 26 Jun 2026 20:51:10 +0800 Subject: [PATCH 2/2] doc: remove uselsess comment --- .github/workflows/ocr-review.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ocr-review.yml b/.github/workflows/ocr-review.yml index 2bf53f2e..6d96fc6c 100644 --- a/.github/workflows/ocr-review.yml +++ b/.github/workflows/ocr-review.yml @@ -5,7 +5,6 @@ # # Triggers: # - PR opened (uses pull_request_target for fork secret access) -# - Comment on PR containing '/open-code-review' or '@open-code-review' # # Required secrets: # OCR_LLM_URL - LLM API endpoint (e.g., https://api.openai.com/v1/chat/completions)