From 15519599576c038a204c22c1a258e3fc72e78681 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 23 Sep 2025 12:10:41 +0300 Subject: [PATCH] fix(ci): install bundler, remove dependabot config --- .github/dependabot.yml | 33 --------------------------------- .github/workflows/ci.yml | 4 +++- 2 files changed, 3 insertions(+), 34 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 215fb15..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,33 +0,0 @@ -version: 2 -updates: - - package-ecosystem: "github-actions" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - time: "09:00" - groups: - github-actions: - patterns: - - "actions/*" - - "ruby/setup-ruby" - - "Homebrew/actions/*" - commit-message: - prefix: "ci" - include: "scope" - - - package-ecosystem: "bundler" - directory: "/" - schedule: - interval: "weekly" - day: "monday" - time: "09:00" - groups: - development-dependencies: - dependency-type: "development" - patterns: - - "rubocop*" - - "rspec*" - commit-message: - prefix: "deps" - include: "scope" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f509e75..5f97ff8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,9 @@ jobs: run: brew install-bundler-gems - name: Install project gems - run: bundle install + run: | + gem install bundler + bundle install - name: Run brew test-bot (cleanup) run: brew test-bot --only-cleanup-before