Cron Bump aws-cli-v2 Version #1310
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: Cron Bump aws-cli-v2 Version | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies and run job | |
run: | | |
cd .github/automation | |
pip install -r requirements.txt | |
python main.py | |
env: | |
GITHUB_TOKEN: ${{secrets.DNX_GITHUB_TOKEN}} |