Skip to content

Commit 0d38fd6

Browse files
committed
Document the bump of actions/checkout to v4 (nodejs 20)
1 parent 52305d7 commit 0d38fd6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
The format of this change log follows the advice given at [Keep a CHANGELOG](http://keepachangelog.com).
1010

1111
## [Unreleased]
12+
### Changed
13+
- Updated all uses of `actions/checkout` from `v3` (using node 16) to `v4` (using node 20), because [actions using node 16 are deprecated](https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/) and will stop working in the future.
14+
* ACTION SUGGESTED: In order to avoid the node 16 deprecation warnings, update your workflows to use `actions/checkout@v4`.
15+
1216
## [4.3.2] - 2024-01-26
1317
### Changed
1418
- Modified internal CI scripts towards better Codecov future support.

docs/GHAFileExplained.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
steps:
8282
# Check out this repository code in ./plugin directory
8383
- name: Check out repository code
84-
uses: actions/checkout@v3
84+
uses: actions/checkout@v4
8585
with:
8686
path: plugin
8787

gha.dist.yml

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

3737
steps:
3838
- name: Check out repository code
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
path: plugin
4242

0 commit comments

Comments
 (0)