Skip to content

Fetch latest data and commit #1538

Fetch latest data and commit

Fetch latest data and commit #1538

Workflow file for this run

name: Fetch latest data and commit
on:
repository_dispatch:
schedule:
- cron: '1 11 * * *'
jobs:
scheduled:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Check out repo
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- uses: actions/cache@v2
name: Configure pip caching
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Fetch, update and commit FARA data
run: . update_and_commit_all.sh