Update Known Hosts file #26
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
name: 'Update Known Hosts file' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 5 * * 1' | |
permissions: | |
contents: write | |
jobs: | |
known-hosts: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
- uses: adam7/platformsh-cli-action@v1.2 | |
with: | |
token: ${{ secrets.PLATFORMSH_CLI_TOKEN }} | |
- run: ./.github/update-known-hosts.php | |
- run: mv ./.github/known_hosts . && cp ./known_hosts ./dist/known_hosts | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update known_hosts file | |
commit_options: '--no-verify --signoff' | |
file_pattern: 'known_hosts dist/known_hosts' | |
commit_user_name: github-actions | |
commit_user_email: github-actions[bot]@users.noreply.github.com | |
commit_author: hw <github-actions[bot]@users.noreply.github.com> | |
push_options: '' |