Skip to content

Commit f74a883

Browse files
committed
Enable GitHub actions update via dependabot
1 parent f62c8d3 commit f74a883

3 files changed

Lines changed: 28 additions & 21 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@ jobs:
1919
- 3.4
2020
name: Ruby ${{ matrix.ruby }} test
2121
steps:
22-
- uses: actions/checkout@v4
23-
- name: Set up Ruby ${{ matrix.ruby }}
24-
uses: ruby/setup-ruby@v1
25-
with:
26-
ruby-version: ${{ matrix.ruby }}
27-
- name: Build and test with Rake
28-
run: |
29-
gem install bundler --no-document
30-
bundle install --jobs 4 --retry 3
31-
bundle exec rake
22+
- uses: actions/checkout@v6
23+
- name: Set up Ruby ${{ matrix.ruby }}
24+
uses: ruby/setup-ruby@v1
25+
with:
26+
ruby-version: ${{ matrix.ruby }}
27+
- name: Build and test with Rake
28+
run: |
29+
gem install bundler --no-document
30+
bundle install --jobs 4 --retry 3
31+
bundle exec rake
3232
3333
lint:
3434
runs-on: ubuntu-latest
3535
name: Rubocop lint
3636
steps:
37-
- uses: actions/checkout@v4
38-
- name: Set up Ruby 3.2
39-
uses: ruby/setup-ruby@v1
40-
with:
41-
ruby-version: 3.2
42-
- name: Lint with Rubocop
43-
run: |
44-
gem install bundler --no-document
45-
bundle install --jobs 4 --retry 3
46-
bundle exec rake rubocop
37+
- uses: actions/checkout@v6
38+
- name: Set up Ruby 3.2
39+
uses: ruby/setup-ruby@v1
40+
with:
41+
ruby-version: 3.2
42+
- name: Lint with Rubocop
43+
run: |
44+
gem install bundler --no-document
45+
bundle install --jobs 4 --retry 3
46+
bundle exec rake rubocop

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@v9
14+
- uses: actions/stale@v10
1515
with:
1616
stale-issue-message: >
1717
This issue has been automatically marked as stale because it has not had

0 commit comments

Comments
 (0)