Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 770ba4a

Browse files
authored
Merge pull request #322 from takkii/develop
Update.
2 parents fe316ba + da3462d commit 770ba4a

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/minitest_on_pr_merge.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ jobs:
1313
ruby-version: ['3.0', '3.1']
1414

1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: ruby/setup-ruby@v1
18-
with:
16+
- uses: actions/checkout@v3
17+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
18+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
19+
# uses: ruby/setup-ruby@v1
20+
- uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
21+
with:
1922
ruby-version: ${{ matrix.ruby-version }}
2023
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
2124
- name: Run tests

.github/workflows/ruby.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ jobs:
2525
ruby-version: ['3.0', '3.1']
2626

2727
steps:
28-
- uses: actions/checkout@v3
29-
- uses: ruby/setup-ruby@v1
30-
with:
28+
- uses: actions/checkout@v3
29+
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
30+
# change this to (see https://github.com/ruby/setup-ruby#versioning):
31+
# uses: ruby/setup-ruby@v1
32+
- uses: ruby/setup-ruby@2b019609e2b0f1ea1a2bc8ca11cb82ab46ada124
33+
with:
3134
ruby-version: ${{ matrix.ruby-version }}
3235
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
3336
- name: Run tests

0 commit comments

Comments
 (0)