diff options
author | Alexandre Flament <alex@al-f.net> | 2021-01-14 17:14:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 17:14:59 +0100 |
commit | 824fe40a28d802d5855a92c013ad8a6d7037a537 (patch) | |
tree | 9162c3d5f4bad9ed8fe057e8baa24222a9ebd76d /.github/workflows/integration.yml | |
parent | 484dc99580a4cfdbba022209cbe896cd69b3e8b2 (diff) | |
parent | 38090daa2901b206217b8b8764b28adba56912bf (diff) | |
download | searxng-824fe40a28d802d5855a92c013ad8a6d7037a537.tar.gz searxng-824fe40a28d802d5855a92c013ad8a6d7037a537.zip |
Merge pull request #2467 from dalf/fix-ci
[fix] github actions: use ubuntu-20.04 instead of ubuntu-latest
Diffstat (limited to '.github/workflows/integration.yml')
-rw-r--r-- | .github/workflows/integration.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ad3e941a7..bf9883353 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -5,10 +5,10 @@ on: [push, pull_request] jobs: python: name: Python ${{ matrix.python-version }} - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-20.04] python-version: [3.6, 3.7, 3.8, 3.9] steps: - name: Checkout @@ -46,7 +46,7 @@ jobs: themes: name: Themes - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -59,7 +59,7 @@ jobs: documentation: name: Documentation - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -92,7 +92,7 @@ jobs: - documentation env: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout if: env.DOCKERHUB_USERNAME != null |