Skip to content

Commit 68befe4

Browse files
code-health: bump actions in ci
Bump actions/checkout and actions/setup-python to their latest versions. Part of #198
1 parent 93b2141 commit 68befe4

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Diff for: .github/workflows/reusable_testing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- name: Clone the tarantool-python connector
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
repository: ${{ github.repository_owner }}/tarantool-python
2020

@@ -29,7 +29,7 @@ jobs:
2929
run: sudo dpkg -i tarantool*.deb
3030

3131
- name: Setup python3 for tests
32-
uses: actions/setup-python@v2
32+
uses: actions/setup-python@v4
3333
with:
3434
python-version: 3.7
3535

Diff for: .github/workflows/testing.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ jobs:
5656

5757
steps:
5858
- name: Clone the connector
59-
uses: actions/checkout@v2
59+
uses: actions/checkout@v3
6060

6161
- name: Install tarantool ${{ matrix.tarantool }}
6262
uses: tarantool/setup-tarantool@v1
6363
with:
6464
tarantool-version: ${{ matrix.tarantool }}
6565

6666
- name: Setup Python for tests
67-
uses: actions/setup-python@v2
67+
uses: actions/setup-python@v4
6868
with:
6969
python-version: ${{ matrix.python }}
7070

@@ -114,7 +114,7 @@ jobs:
114114

115115
steps:
116116
- name: Clone the connector
117-
uses: actions/checkout@v2
117+
uses: actions/checkout@v3
118118
# This is needed for pull_request_target because this event runs in the
119119
# context of the base commit of the pull request. It works fine for
120120
# `push` and `workflow_dispatch` because the default behavior is used
@@ -131,7 +131,7 @@ jobs:
131131
rm -f ${ARCHIVE_NAME}
132132
133133
- name: Setup Python for tests
134-
uses: actions/setup-python@v2
134+
uses: actions/setup-python@v4
135135
with:
136136
python-version: ${{ matrix.python }}
137137

@@ -173,7 +173,7 @@ jobs:
173173
- '3.10'
174174
steps:
175175
- name: Clone the connector repo
176-
uses: actions/checkout@v2
176+
uses: actions/checkout@v3
177177

178178
- name: Remove connector source code
179179
run: python .github/scripts/remove_source_code.py
@@ -184,7 +184,7 @@ jobs:
184184
tarantool-version: ${{ matrix.tarantool }}
185185

186186
- name: Setup Python for tests
187-
uses: actions/setup-python@v2
187+
uses: actions/setup-python@v4
188188
with:
189189
python-version: ${{ matrix.python }}
190190

@@ -225,10 +225,10 @@ jobs:
225225

226226
steps:
227227
- name: Clone the connector
228-
uses: actions/checkout@v2
228+
uses: actions/checkout@v3
229229

230230
- name: Setup Python for tests
231-
uses: actions/setup-python@v2
231+
uses: actions/setup-python@v
232232
with:
233233
python-version: ${{ matrix.python }}
234234

@@ -302,13 +302,13 @@ jobs:
302302
- '3.10'
303303
steps:
304304
- name: Clone the connector repo
305-
uses: actions/checkout@v2
305+
uses: actions/checkout@v3
306306

307307
- name: Remove connector source code
308308
run: python .github/scripts/remove_source_code.py
309309

310310
- name: Setup Python for tests
311-
uses: actions/setup-python@v2
311+
uses: actions/setup-python@v4
312312
with:
313313
python-version: ${{ matrix.python }}
314314

0 commit comments

Comments
 (0)