From 03336933ce5a0af82bfbfb27c1f3c15a27f038b6 Mon Sep 17 00:00:00 2001 From: Adi Siva Prasad Reddy Date: Wed, 27 May 2026 15:39:28 -0700 Subject: [PATCH] fix(action): bump setup-python to v6.2.0 to drop Node 20 runtime actions/setup-python@v5.1.0 runs on the deprecated Node.js 20 runtime, which emits a warning for every consumer of this action. v6.2.0 runs on Node.js 24 and clears the warning. Co-Authored-By: Claude Opus 4.7 (1M context) --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e397c54..ab54025 100644 --- a/action.yml +++ b/action.yml @@ -31,7 +31,7 @@ runs: using: 'composite' steps: - name: Install Python - uses: actions/setup-python@v5.1.0 + uses: actions/setup-python@v6.2.0 with: python-version: '3.10'