From 58f878ac2a0de6e17ab4c3f96eb70d194ca76cf4 Mon Sep 17 00:00:00 2001 From: Taylor Beseda Date: Tue, 30 Jul 2024 17:53:12 -0600 Subject: [PATCH] try newer bundler --- .github/workflows/build.yml | 4 ++-- src/shared/copy.js | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56759ac..6004e68 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [ 16.x, 18.x, 20.x ] + node-version: [ 16.x, 18.x, 20.x, 22.x ] os: [ windows-latest, ubuntu-latest, macOS-latest ] # Go @@ -44,7 +44,7 @@ jobs: - name: Set up bundle run: | - gem install bundler -v 1.17.3 # Bundler 2.x breaks test lockfile + gem install bundler -v 2.4.22 # 2.5+ breaks bundle config jobs 4 bundle config retry 3 diff --git a/src/shared/copy.js b/src/shared/copy.js index 8b3b4b4..10e1dbb 100644 --- a/src/shared/copy.js +++ b/src/shared/copy.js @@ -17,7 +17,6 @@ module.exports = function copy (source, destination, params, callback) { callback() } else { - console.log('>>>> RUNNING cp', source, destination) // cpr(source, destination, { overwrite: true }, callback) cp(source, destination, { recursive: true }, callback) }