From 9d57a9a6015b71a1d4f63273797301e8f911bf4f Mon Sep 17 00:00:00 2001 From: tnakazato Date: Wed, 11 Mar 2026 16:23:41 +0900 Subject: [PATCH] Upgrade GitHub Actions to checkout@v6 and setup-python@v6 --- .github/workflows/pythonapp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 9ee1072..2f05b9e 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -23,7 +23,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up environment variable (macOS) if: ${{ startsWith(matrix.os, 'macos-') }} @@ -31,7 +31,7 @@ jobs: echo "SDKROOT=$(xcrun --sdk macosx --show-sdk-path)" >> $GITHUB_ENV - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} architecture: ${{ startsWith(matrix.os, 'macos-') && 'ARM64' || 'x64' }}