Skip to content

Commit f65a493

Browse files
committed
(maint) Update Checkout GitHub Action
This commit updates the Checkout GitHub Action from 2 to 3, as version 2 is deprecated because it uses Node.js 12. See: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
1 parent 17631bb commit f65a493

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.cfg.os }}
2121
steps:
2222
- name: Checkout current PR
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/rspec_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ${{ matrix.cfg.os }}
2727
steps:
2828
- name: Checkout current PR
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Install ruby version ${{ matrix.cfg.ruby }}
3232
uses: ruby/setup-ruby@v1

.github/workflows/snyk_monitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Snyk Monitor
1212
steps:
1313
- name: Checkout current PR
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v3
1515
- name: Setup Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:

0 commit comments

Comments
 (0)