Skip to content

Commit bf3c9ce

Browse files
[all hosts] (workflows) Update to use node.js LTS (#427)
* [all hosts] (workflows) Update to use node.js LTS * Update autogen-docs workflow
1 parent 6e81df5 commit bf3c9ce

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/auto-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: auto-publish
22
run-name: Automatically publish documentation
33
on:
44
schedule:
5-
# Run at 2:15 AM UTC on Wednesday and Friday
5+
# Run at 2:15 AM UTC on Wednesday and Friday.
66
- cron: '15 2 * * WED,FRI'
77
jobs:
88
auto-publish:
@@ -15,7 +15,7 @@ jobs:
1515
working-directory: ./
1616
steps:
1717
- name: Check out repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
- name: Check out main

.github/workflows/autogen-docs.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: autogen-docs
22
run-name: Automatically run GenerateDocs
33
on:
44
schedule:
5+
# Run at 10:45 AM UTC on Tuesday and Thursday.
56
- cron: '45 10 * * TUE'
67
- cron: '45 10 * * THU'
78
jobs:
@@ -15,15 +16,16 @@ jobs:
1516
working-directory: ./generate-docs
1617
steps:
1718
- name: Check out repository
18-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
1920
- name: Make the script file executable
2021
run: |
2122
echo "Making script file executable"
2223
chmod +x ./GenerateDocs.sh
2324
- name: Set up node
24-
uses: actions/setup-node@v4
25+
uses: actions/setup-node@v6
2526
with:
26-
node-version: '18'
27+
# Use an Active LTS version of Node.js.
28+
node-version: 'lts/*'
2729
- name: Run GenerateDocs script
2830
run: |
2931
echo "Generating docs"

0 commit comments

Comments
 (0)