Skip to content

Commit bd8b1a1

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 2649bc2 commit bd8b1a1

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
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ${{ matrix.cfg.os }}
2424
steps:
2525
- name: Checkout current PR
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
2929

.github/workflows/rspec_tests.yaml

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

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

.github/workflows/snyk_monitor.yaml

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

0 commit comments

Comments
 (0)