Skip to content

Commit

Permalink
Use ubuntu-20.04 for github action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladyslav Tymofeiev committed Aug 13, 2024
1 parent bd95051 commit 6c42fe5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/playbook-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
matrix:
python-version: [3.7.13]
python-version: [3.5]

steps:
- uses: actions/checkout@v2
Expand All @@ -29,7 +29,6 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install "setuptools<58.0.0" wheel
pip install demjson
pip install -r requirements.txt
- name: Run Make test.syntax
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/syntax-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
max-parallel: 4
matrix:
Expand All @@ -33,4 +33,4 @@ jobs:
pip install -r requirements.txt
- name: Run Make test.syntax
run: |
timeout 90m make --keep-going test.syntax
timeout 90m make --keep-going test.syntax

0 comments on commit 6c42fe5

Please sign in to comment.