Skip to content

Commit 39f9802

Browse files
committed
Use stable version of actions/checkout
1 parent 2fdfbfe commit 39f9802

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
runs-on: macos-latest
88
steps:
9-
- uses: actions/checkout@master
9+
- uses: actions/checkout@v2
1010
- name: Install dependencies
1111
run: |
1212
gem install bundler --no-document

.github/workflows/ubuntu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
ruby: [ 'jruby-9.2.17.0', 'head', '3.0', '2.7', '2.6', '2.5', '2.4' ]
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v2
1313
- name: Set up Ruby
1414
uses: ruby/setup-ruby@v1
1515
with:

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
matrix:
1010
ruby: [ 'head', '3.0', '2.7', '2.6', '2.5', '2.4' ]
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v2
1313
- name: Set up Ruby
1414
uses: ruby/setup-ruby@v1
1515
with:

0 commit comments

Comments
 (0)