Skip to content

Commit 40bf404

Browse files
committed
Update actions/checkout to v4
Fix following warning message in CI: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` Because the CI will eventually stop working.
1 parent 8ddb728 commit 40bf404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
include:
1515
- { os: windows-2022 , ruby: mswin }
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818
- name: Set up Ruby ${{ matrix.ruby }}
1919
uses: ruby/setup-ruby@v1
2020
with:
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
ruby: [ 'debug' ]
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- name: Set up Ruby ${{ matrix.ruby }}
4242
uses: ruby/setup-ruby@v1
4343
with:

0 commit comments

Comments
 (0)