diff options
author | Alexandre Flament <alex@al-f.net> | 2021-03-05 09:49:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 09:49:39 +0100 |
commit | b97273df6bd9c47c97dd15b891e34447b643b23c (patch) | |
tree | 5d85f396a4d0f3afcada76840f77176b460ea20e /.github | |
parent | aaae9a209e4d6518965064e8b515e411fb8dd0d6 (diff) | |
download | searxng-b97273df6bd9c47c97dd15b891e34447b643b23c.tar.gz searxng-b97273df6bd9c47c97dd15b891e34447b643b23c.zip |
Update data-update.yml
Remove cache
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/data-update.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml index eb9bed8c8..49d652d0f 100644 --- a/.github/workflows/data-update.yml +++ b/.github/workflows/data-update.yml @@ -1,7 +1,7 @@ name: "Update searx.data" on: schedule: - - cron: "05 08 * * 5" + - cron: "05 09 * * 5" jobs: updateData: @@ -31,17 +31,10 @@ jobs: python-version: '3.9' architecture: 'x64' - - name: Cache Python dependencies - id: cache-python - uses: actions/cache@v2 - with: - path: ./local - key: python-ubuntu-20.04-3.9-${{ hashFiles('requirements*.txt', 'setup.py') }} - - name: Install Python dependencies - if: steps.cache-python.outputs.cache-hit != 'true' run: | - make V=1 install + pip install -U pip wheel setuptools + pip install -r requirements.txt - name: Fetch data env: |