File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ concurrency:
10
10
11
11
jobs :
12
12
test :
13
- runs-on : ubuntu-20.04
13
+ runs-on : ubuntu-latest
14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
49
49
- /run/mysqld:/run/mysqld
50
50
51
51
steps :
52
- - uses : actions/checkout@v2
52
+ - uses : actions/checkout@v3
53
53
54
54
- name : Workaround MySQL container permissions
55
55
if : startsWith(matrix.db, 'mysql')
@@ -58,15 +58,15 @@ jobs:
58
58
/usr/bin/docker ps --all --filter status=exited --no-trunc --format "{{.ID}}" | xargs -r /usr/bin/docker start
59
59
60
60
- name : Set up Python ${{ matrix.py }}
61
- uses : actions/setup-python@v2
61
+ uses : actions/setup-python@v4
62
62
with :
63
63
python-version : ${{ matrix.py }}
64
64
cache : ' pip'
65
65
cache-dependency-path : ' requirements-dev.txt'
66
66
67
67
- name : Install dependency
68
68
run : |
69
- pip install -U -r requirements-dev.txt
69
+ pip install --upgrade -r requirements-dev.txt
70
70
71
71
- name : Set up MySQL
72
72
run : |
@@ -107,16 +107,16 @@ jobs:
107
107
coveralls :
108
108
if : github.repository == 'PyMySQL/PyMySQL'
109
109
name : Finish coveralls
110
- runs-on : ubuntu-20.04
110
+ runs-on : ubuntu-latest
111
111
needs : test
112
112
steps :
113
113
- name : requirements.
114
114
run : |
115
115
echo coveralls > requirements.txt
116
116
117
- - uses : actions/setup-python@v2
117
+ - uses : actions/setup-python@v4
118
118
with :
119
- python-version : ' 3.9 '
119
+ python-version : ' 3.x '
120
120
cache : ' pip'
121
121
122
122
- name : Finished
You can’t perform that action at this time.
0 commit comments