Skip to content

Commit 87ab052

Browse files
authored
adjust text to YAML file
Node version in YAML file has been updated, the explanation for the YAML file has not. This commit fixes this typo.
1 parent 6b70596 commit 87ab052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/11/en/part11b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ The [uses](https://docs.github.com/en/free-pro-team@latest/actions/reference/wor
225225
226226
Here we're using a public action [actions/checkout](https://github.com/actions/checkout) and we specify a version (<code>@v4</code>) to avoid potential breaking changes if the action gets updated. The <code>checkout</code> action does what the name implies: it checkouts the project source code from Git.
227227
228-
Secondly, as the application is written in JavaScript, Node.js must be set up to be able to utilize the commands that are specified in <code>package.json</code>. To set up Node.js, [actions/setup-node](https://github.com/actions/setup-node) action can be used. Version <code>16</code> is selected because it is the version the application is using in the production environment.
228+
Secondly, as the application is written in JavaScript, Node.js must be set up to be able to utilize the commands that are specified in <code>package.json</code>. To set up Node.js, [actions/setup-node](https://github.com/actions/setup-node) action can be used. Version <code>20</code> is selected because it is the version the application is using in the production environment.
229229
230230
```yml
231231
# name and trigger not shown anymore...

0 commit comments

Comments
 (0)