Skip to content

Commit 6c7eeaa

Browse files
committed
update actions to use ubuntu 20.04 and python container
1 parent 4e89550 commit 6c7eeaa

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
# only run if PR is approved
99
if: github.event.review.state == 'approved'
1010
runs-on: ubuntu-22.04
11+
container: python:3.10
1112

1213
steps:
1314
- name: Check out repository code

.github/workflows/psql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
mimic-iv-psql:
88
# only run if PR is approved
99
if: github.event.review.state == 'approved'
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-20.04
1111
container: python:3.10
1212

1313
services:

.github/workflows/sqlite.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ jobs:
88
# only run if PR is approved
99
if: github.event.review.state == 'approved'
1010
runs-on: ubuntu-20.04
11+
container: python:3.10
1112

1213
steps:
1314
- name: Check out repository code
1415
uses: actions/checkout@v3
1516

16-
- name: Set up Python
17-
uses: actions/setup-python@v4
18-
with:
19-
python-version: '3.10'
20-
2117
- name: Python dependencies
2218
run: |
2319
pip install pandas

0 commit comments

Comments
 (0)