From 7d71c6aa8207e878fb0a1ee99d0bbf5b9fed76b5 Mon Sep 17 00:00:00 2001 From: Daniel Toyama Date: Fri, 23 Jan 2026 14:39:04 -0800 Subject: [PATCH] Upgrade GitHub Actions for Node 24 compatibility. Upgrade GitHub Actions to their latest versions to ensure compatibility with Node 24, as Node 20 will reach end-of-life in April 2026. Original PR #300 by @salmanmkc. Thanks! PiperOrigin-RevId: 860260148 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61fb1eec..efb0b074 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,10 +20,10 @@ jobs: matrix: python-version: ["3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }}