From 0d135522bf0b5bae10ce87e1aeffc44bee16676b Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 1 Sep 2026 21:38:04 +0000 Subject: [PATCH 1/2] Bump GitHub Actions still on Node.js 20 to their Node.js 24 releases actions/upload-artifact, actions/download-artifact, actions/upload-pages-artifact, actions/deploy-pages, and marocchino/sticky-pull-request-comment were pinned to versions whose action.yml still declares node20, which GitHub Actions now forces onto the node24 runtime with a deprecation warning. Bump each to its latest major release, which targets node24 natively, with no input changes required. Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_014V6NgPCMwFMca1pavBd8Zy --- .github/workflows/ci.yml | 4 ++-- .github/workflows/docs.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c78353c..a0075cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: - name: Post coverage comment if: github.event_name == 'pull_request' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@v2 + uses: marocchino/sticky-pull-request-comment@v3 with: header: coverage path: coverage-comment.md @@ -135,7 +135,7 @@ jobs: run: pip install build - name: Build distributions run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2ffb06a..75176d4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: - name: Build API documentation run: python scripts/gen_docs.py --output site - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: site @@ -46,4 +46,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 25f5cc2..eaadc83 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,7 +38,7 @@ jobs: run: pip install build - name: Build distributions run: python -m build - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -50,7 +50,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: dist path: dist/ From 4cecbd75c71484a37f54c333afb993211b88b6c6 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 1 Sep 2026 23:12:43 +0000 Subject: [PATCH 2/2] Bump version to satisfy the required version-bump CI check Co-Authored-By: Claude Sonnet 5 Claude-Session: https://claude.ai/code/session_014V6NgPCMwFMca1pavBd8Zy --- warpedpinball/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warpedpinball/__init__.py b/warpedpinball/__init__.py index 392eda2..ce16e6f 100644 --- a/warpedpinball/__init__.py +++ b/warpedpinball/__init__.py @@ -33,7 +33,7 @@ from .origin import OriginAuthError from .transports.http import HttpTransport -__version__ = "0.3.0" +__version__ = "0.3.1" __all__ = [ "connect",