Update latest user agents #1560
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 latest user agents | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: Update latest user agents | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.12.x' | |
- run: python --version | |
- run: pip install -r requirements.txt | |
- run: python update.py | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |