From 509182273fbc286f3e0fd74951e9994fa9d3de46 Mon Sep 17 00:00:00 2001 From: Zsolt Kozaroczy Date: Fri, 19 Sep 2025 16:37:07 +0200 Subject: [PATCH] Add dependabot to keep CI up-to-date --- .github/dependabot.yml | 6 ++++++ .github/workflows/test.yml | 27 ++++++++++++++------------- 2 files changed, 20 insertions(+), 13 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6fff16c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: monthly diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6d81374..a784881 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,9 @@ name: Test on: push: - branches: ['*'] + branches: ["*"] pull_request: - branches: ['*'] + branches: ["*"] jobs: test_ruby_versions: @@ -32,21 +32,22 @@ jobs: - ruby: 3.3 - ruby: 3.4 - ruby: head - allow_failures: 'allow failures' + allow_failures: "allow failures" - ruby: jruby-9.3 - ruby: jruby-9.4 + - ruby: jruby-10.0 - ruby: jruby-head - allow_failures: 'allow failures' + allow_failures: "allow failures" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Install ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: "${{ matrix.ruby }}" - bundler-cache: true + - name: Install ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: "${{ matrix.ruby }}" + bundler-cache: true - - name: Run tests - run: | - bundle exec rake + - name: Run tests + run: | + bundle exec rake