From f637642c68c4a9844b3290b2b6f08eb5c01953e0 Mon Sep 17 00:00:00 2001 From: jnasbyupgrade Date: Fri, 1 May 2026 15:27:52 -0500 Subject: [PATCH] ci: update actions/checkout from v4 to v6 v4 uses Node.js 20 which is deprecated on GitHub Actions runners. v6 supports Node.js 24. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 827299d..ec1f57d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: Start PostgreSQL ${{ matrix.pg }} run: pg-start ${{ matrix.pg }} - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install rsync run: apt-get install -y rsync - name: Test on PostgreSQL ${{ matrix.pg }} @@ -67,7 +67,7 @@ jobs: pg_ctlcluster ${{ matrix.old_pg }} test start pg_isready -t 30 - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install rsync run: apt-get install -y rsync - name: Install cat_tools into old cluster @@ -133,7 +133,7 @@ jobs: - name: Start PostgreSQL ${{ matrix.pg }} run: pg-start ${{ matrix.pg }} - name: Check out the repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install rsync run: apt-get install -y rsync - name: Install cat_tools (all versions) @@ -167,7 +167,7 @@ jobs: if: always() runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Verify all jobs are listed in needs # Ensures this job won't silently ignore a newly-added job that was # omitted from the needs list above.