From 13651a94383ec0dd5b933535eb59ffb6338110c4 Mon Sep 17 00:00:00 2001 From: xPeterS Date: Wed, 18 Mar 2026 12:12:32 -0700 Subject: [PATCH] Update workflow to use Node.js 24 for GitHub Actions Set FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true to opt into Node.js 24 ahead of the June 2026 forced migration, resolving deprecation warnings for actions/checkout@v4, actions/setup-python@v5, and actions/upload-artifact@v4. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/publish-to-pypi.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 82bacc5..a7e1617 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -2,6 +2,9 @@ name: Publish Python distribution to Pypi and testpypi on: push +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: build: name: Build distribution