File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: auto-publish
22run-name : Automatically publish documentation
33on :
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'
77jobs :
88 auto-publish :
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
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ name: autogen-docs
22run-name : Automatically run GenerateDocs
33on :
44 schedule :
5+ # Run at 10:45 AM UTC on Tuesday and Thursday.
56 - cron : ' 45 10 * * TUE'
67 - cron : ' 45 10 * * THU'
78jobs :
@@ -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"
You can’t perform that action at this time.
0 commit comments