From e07e4688904e891e359e66ba2e4a0de57a397cc1 Mon Sep 17 00:00:00 2001 From: mallowlabs Date: Sat, 4 Apr 2026 10:33:12 +0900 Subject: [PATCH 1/3] Replace deprecated bundle options with environment variables --- .github/workflows/ci.yml | 4 +++- README.md | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fea0d51..40fa66c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,5 +15,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: bundler-cache: true - - run: bundle install --jobs 4 --retry 3 --path vendor/bundle + - run: bundle install --jobs 4 --retry 3 + env: + BUNDLE_PATH: vendor/bundle - run: bundle exec jekyll build diff --git a/README.md b/README.md index a9e6ed9..75ec3ba 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The offcial site of codefirst. Requirements --------------------------- - $ bundle install --path .bundle + $ BUNDLE_PATH=vendor/bundle bundle install How to commit: --------------------------- From d8d41a873dcaffd56e68861e768eab49736bf78e Mon Sep 17 00:00:00 2001 From: mallowlabs Date: Sat, 4 Apr 2026 10:33:53 +0900 Subject: [PATCH 2/3] Remove redundant bundle install in CI --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40fa66c..9ae0f1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,4 @@ jobs: - uses: ruby/setup-ruby@v1 with: bundler-cache: true - - run: bundle install --jobs 4 --retry 3 - env: - BUNDLE_PATH: vendor/bundle - run: bundle exec jekyll build From f74534a1a1241d98fca9ccaaa0647d095e369e24 Mon Sep 17 00:00:00 2001 From: mallowlabs Date: Sat, 4 Apr 2026 10:37:02 +0900 Subject: [PATCH 3/3] Add vendor/bundle to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 50b7133..a42c712 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.swp _site .bundle +vendor/bundle