diff options
author | Christian Clauss <cclauss@me.com> | 2024-06-25 08:53:20 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-06-25 15:26:05 +0200 |
commit | 837f3bcd101274b7cbea95e6ab2c19282e8b2937 (patch) | |
tree | 0932f6e659a87dfecc8881ae0b67b20f3bf59873 /.github | |
parent | 1449824165c53c04d6c825515fc2d707cd5b4907 (diff) | |
download | searxng-837f3bcd101274b7cbea95e6ab2c19282e8b2937.tar.gz searxng-837f3bcd101274b7cbea95e6ab2c19282e8b2937.zip |
GitHub Actions: Upgrade data-update.yml infrastructure
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/data-update.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/data-update.yml b/.github/workflows/data-update.yml index f9ece7433..ee3576eee 100644 --- a/.github/workflows/data-update.yml +++ b/.github/workflows/data-update.yml @@ -7,7 +7,7 @@ on: jobs: updateData: name: Update data - ${{ matrix.fetch }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 if: ${{ github.repository_owner == 'searxng'}} strategy: fail-fast: false @@ -29,9 +29,9 @@ jobs: sudo ./utils/searxng.sh install packages - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: - python-version: '3.9' + python-version: '3.12' architecture: 'x64' - name: Install Python dependencies @@ -46,7 +46,7 @@ jobs: - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v3 + uses: peter-evans/create-pull-request@v6 with: commit-message: '[data] update searx.data - ${{ matrix.fetch }}' committer: searxng-bot <noreply@github.com> |