Skip to content

Commit

Permalink
Use latest setup-node in GitHub Actions
Browse files Browse the repository at this point in the history
Rather than specifying a specific `setup-node` version, and having to [manually increment it](https://github.com/hazelcast/hz-docs/pulls?q=actions%2Fsetup-node), instead we can specify the latest `v4` as we do with other GitHub Actions (e.g. `checkout`).
  • Loading branch information
JackPGreen authored Oct 7, 2024
1 parent 5314007 commit 828ec4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/adoc-html.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Convert adoc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.0.2
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Check for broken internal links
Expand Down

0 comments on commit 828ec4d

Please sign in to comment.