Skip to content

Commit c129082

Browse files
committed
ci upgrades
1 parent 02f1901 commit c129082

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/dependabot.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ updates:
1414
interval: "weekly"
1515
pull-request-branch-name:
1616
separator: "-"
17+
versioning-strategy: lockfile-only

.github/workflows/ruby.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
name: Ruby checks
1+
name: Ruby
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ main ]
66
pull_request:
7-
types: [ opened, edited, synchronize ]
87

98
jobs:
109
test:
@@ -13,13 +12,13 @@ jobs:
1312
strategy:
1413
fail-fast: false
1514
matrix:
16-
ruby-version: [ 3.1, 3.0, 2.7 ]
15+
ruby-version: [ 3, 3.1, "3.0" ]
1716

1817
name: Ruby ${{ matrix.ruby-version }}
1918

2019
steps:
2120
- name: clone ${{ github.repository }}
22-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2322
- name: setup Ruby ${{ matrix.ruby-version }}
2423
uses: ruby/setup-ruby@v1
2524
with:
@@ -28,4 +27,6 @@ jobs:
2827
- name: run tests
2928
run: bundle exec rspec
3029
- name: upload code coverage
31-
uses: codecov/codecov-action@v3
30+
uses: codecov/codecov-action@v4
31+
with:
32+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)