From e1c3655c7c60032686be1b068eeb1b594d063aa2 Mon Sep 17 00:00:00 2001 From: Simon Heather Date: Wed, 16 Sep 2026 13:47:20 +0100 Subject: [PATCH 1/2] Stop testing EOL versions of Node.js --- .github/workflows/ci.yml | 2 +- .github/workflows/s3-bucket.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05fe194b..fe661fde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: ['20.x', '24.x', 'lts/*'] + node-version: ['22.x', '24.x', 'lts/*'] os: [macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/s3-bucket.yml b/.github/workflows/s3-bucket.yml index 8ab666c7..9fd736e3 100644 --- a/.github/workflows/s3-bucket.yml +++ b/.github/workflows/s3-bucket.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node: [20, 'lts/*'] + node: [22, 'lts/*'] env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} From 3a5665b5a8342b2c3bb6a99ffe90cd8d191daabb Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 17 Sep 2026 11:57:08 +0200 Subject: [PATCH 2/2] Apply batched suggestions from code review Co-authored-by: Christian Clauss --- .github/workflows/ci.yml | 2 +- .github/workflows/s3-bucket.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe661fde..3726c45e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: ['22.x', '24.x', 'lts/*'] + node-version: ['lts/-1', 'lts/*', 'latest'] os: [macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/s3-bucket.yml b/.github/workflows/s3-bucket.yml index 9fd736e3..d77cba5f 100644 --- a/.github/workflows/s3-bucket.yml +++ b/.github/workflows/s3-bucket.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - node: [22, 'lts/*'] + node-version: ['lts/-1', 'lts/*', 'latest'] env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}