From e99537abd0ff5218cce23f0479c615c8308e0d0f Mon Sep 17 00:00:00 2001 From: James Kessler Date: Wed, 19 Aug 2026 15:46:43 -0700 Subject: [PATCH] ci: bump actions/checkout to v7 to clear Node 20 deprecation GitHub is forcing actions that target Node 20 onto Node 24, and warns on every job that uses one. actions/checkout was the only such action here, appearing in all three workflows -- v4 in smoke-test.yml and update-major-version-tag.yml, v3 in test.yml. The smoke test runs a four-platform matrix, so it alone emitted four of these warnings per run. v7 matches what coverage-reporter's workflows already use. Co-Authored-By: Claude Opus 5 (1M context) --- .github/workflows/smoke-test.yml | 2 +- .github/workflows/test.yml | 2 +- .github/workflows/update-major-version-tag.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 8ef61be6..fc5277c9 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -36,7 +36,7 @@ jobs: os: [ubuntu-latest, macos-latest, macos-15, windows-latest] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Create minimal lcov coverage fixture shell: bash diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4bd8ab53..ebbfbcd9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: coverage_reporter_version: ['v0.6.14', 'latest', ''] steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v7 - name: Set up environment (Linux) if: ${{ matrix.os == 'ubuntu-latest' }} diff --git a/.github/workflows/update-major-version-tag.yml b/.github/workflows/update-major-version-tag.yml index 02129478..c6e545ad 100644 --- a/.github/workflows/update-major-version-tag.yml +++ b/.github/workflows/update-major-version-tag.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Extract Major Version id: extract_major_version