Skip to content

Commit 9649a3b

Browse files
tnirparndt
andauthored
CI: bump actions/checkout from v3/v4 to v6 (#494)
## Why With v3, we have the following deprecation notices: ``` The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ ``` from https://github.com/collectiveidea/awesome_nested_set/actions/runs/11509088498. See https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ <blockquote> Node16 has been out of support since [September 2023](https://github.com/nodejs/Release/#end-of-life-releases). As a result we have started the deprecation process of Node16 for GitHub Actions. We plan to migrate all actions to run on Node20 by Spring 2024. Following on from our [warning in workflows using Node16](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/) we will start enforcing the use of Node20 rather than Node16 on the 3rd of June. </blockquote> ## What Bump [actions/checkout](https://github.com/actions/checkout) from v3 (and v4) to v6. --------- Signed-off-by: Takuya Noguchi <[email protected]> Co-authored-by: Philip Arndt <[email protected]>
1 parent 04c580e commit 9649a3b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
BUNDLE_PATH_RELATIVE_TO_CWD: true
8787

8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v6
9090
- name: Set up Ruby ${{ matrix.ruby }}
9191
uses: ruby/setup-ruby@v1
9292
with:
@@ -191,7 +191,7 @@ jobs:
191191
--health-retries=3
192192
193193
steps:
194-
- uses: actions/checkout@v3
194+
- uses: actions/checkout@v6
195195
- name: Set up Ruby ${{ matrix.ruby }}
196196
uses: ruby/setup-ruby@v1
197197
with:
@@ -298,7 +298,7 @@ jobs:
298298
--health-retries 5
299299
300300
steps:
301-
- uses: actions/checkout@v3
301+
- uses: actions/checkout@v6
302302
- name: Set up Ruby ${{ matrix.ruby }}
303303
uses: ruby/setup-ruby@v1
304304
with:

.github/workflows/publish_gem.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
# Set up
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- name: Set up Ruby
2222
uses: ruby/setup-ruby@v1
2323
with:

0 commit comments

Comments
 (0)