From 442ac41841b9d6e1a3e0c4cd0234c8db3471e4e2 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 11 Nov 2025 07:16:33 -0600 Subject: [PATCH] Update Node.js and Python versions in GitHub Actions workflow: bump Node.js from 18 to 22 and Python from 3.11 to 3.13 --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 339a750..0cd3ab8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,12 +17,12 @@ jobs: - name: Install NodeJS uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e # v1 with: - node-version: 18 + node-version: 22 - name: Install Python uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 with: - python-version: "3.11" + python-version: "3.13" - name: Install Python Deps run: pip install -r requirements.txt @@ -93,12 +93,12 @@ jobs: - name: Install NodeJS uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e # v1 with: - node-version: 18 + node-version: 22 - name: Install Python uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 with: - python-version: "3.11" + python-version: "3.13" - name: Install Python Deps run: pip install -r requirements.txt