Wiki Update #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs update-wiki update actions every day at 20:00 UTC | |
name: 'Wiki Update' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 20 * * *' | |
jobs: | |
wiki: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout the JDK source' | |
uses: actions/checkout@v4 | |
- name: 'Update Wiki' | |
uses: ./.github/actions/update-wiki | |