Skip to content

Commit 03b56c3

Browse files
authored
Merge pull request #20 from mi-wada/use-actions_checkout_v4
chore: Update actions/checkout to v4
2 parents 7438ee1 + 82e7343 commit 03b56c3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
2222
runs-on: ${{ matrix.os }}
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: Set up Ruby ${{ matrix.ruby }}
2626
uses: ruby/setup-ruby@v1
2727
with:
@@ -47,7 +47,7 @@ jobs:
4747
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
4848
runs-on: ${{ matrix.os }}
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151
- name: Set up Ruby ${{ matrix.ruby }}
5252
uses: ruby/setup-ruby@v1
5353
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- name: Tag with the gem version
1616
run: |
1717
GEM_VERSION=$(ruby -e "require 'rubygems'; gemspec = Dir.glob(\"./**/*.gemspec\").first; puts Gem::Specification::load(gemspec).version")

0 commit comments

Comments
 (0)