@@ -13,24 +13,24 @@ jobs:
1313 name : Update automatically generated files
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 with :
1818 # don't checkout a detatched HEAD
1919 ref : ${{ github.head_ref }}
2020
2121 # this is important so git log can pick up on
2222 # the whole history to generate the list of AUTHORS
23- fetch-depth : ' 0 '
23+ fetch-depth : " 0 "
2424
2525 - name : Set up Git
2626 run : |
2727 git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
2828 git config --local user.name "github-actions[bot]"
2929
30- - uses : actions/setup-node@v2
30+ - uses : actions/setup-node@v4
3131 with :
3232 node-version : ^16.x
33- cache : ' npm'
33+ cache : " npm"
3434
3535 - name : Install npm@8
3636 run : |
@@ -50,41 +50,36 @@ jobs:
5050 run : |
5151 npm run update-authors
5252 git add AUTHORS \*/AUTHORS
53- git commit --no-allow-empty -m "chore: update AUTHORS" || true
5453
5554 - name : Generate Error Documentation
5655 run : |
5756 npm run generate-error-overview
5857 mv error-overview.md error-overview.rst packages/errors/generated/
5958 npm run reformat
6059 git add packages/errors/generated
61- git commit --no-allow-empty -m "chore: update error documentation" || true
6260
6361 - name : Regenerate Evergreen Config
6462 run : |
6563 npm run update-evergreen-config
6664 git add .evergreen.yml
67- git commit --no-allow-empty -m "chore: update evergreen config" || true
6865
6966 - name : Update Security Test Summary
7067 run : |
7168 npm run update-security-test-summary
7269 git add docs/security-test-summary.md
73- git commit --no-allow-empty -m "chore: update security test summary" || true
7470
7571 - name : Regenerate CLI usage text in README files
7672 run : |
7773 npm run update-cli-usage-text packages/*/*.md *.md
7874 git add packages/*/*.md *.md
79- git commit --no-allow-empty -m "chore: update CLI usage text" || true
8075
8176 - name : Create pull request
8277 id : cpr
8378 uses : peter-evans/create-pull-request@v6
8479 with :
8580 commit-message : Update auto-generated files
8681 branch : ci/cron-tasks-update-files
87- title : ' chore: update auto-generated files'
82+ title : " chore: update auto-generated files"
8883 body : |
8984 - Update auto-generated files
9085
0 commit comments