Skip to content

Commit 2adcde6

Browse files
ci: bump actions to use Node.js 16
Action based on Node.js 12 are deprecated in GitHub Actions now [1]. 1. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
1 parent 56dfa4d commit 2adcde6

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/packing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: python3 .github/scripts/remove_source_code.py
8080

8181
- name: Install tarantool
82-
uses: tarantool/setup-tarantool@v1
82+
uses: tarantool/setup-tarantool@v2
8383
with:
8484
tarantool-version: '2.10'
8585

.github/workflows/reusable_testing.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ 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

2121
- name: Download the tarantool build artifact
22-
uses: actions/download-artifact@v2
22+
uses: actions/download-artifact@v3
2323
with:
2424
name: ${{ inputs.artifact_name }}
2525

@@ -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

.github/workflows/testing.yml

+15-15
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 }}
62-
uses: tarantool/setup-tarantool@v1
62+
uses: tarantool/setup-tarantool@v2
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

@@ -127,14 +127,14 @@ jobs:
127127
- name: Clone the connector
128128
# `ref` as merge request is needed for pull_request_target because this
129129
# target runs in the context of the base commit of the pull request.
130-
uses: actions/checkout@v2
130+
uses: actions/checkout@v3
131131
if: github.event_name == 'pull_request_target'
132132
with:
133133
ref: refs/pull/${{ github.event.pull_request.number }}/merge
134134

135135
- name: Clone the connector
136136
if: github.event_name != 'pull_request_target'
137-
uses: actions/checkout@v2
137+
uses: actions/checkout@v3
138138

139139
- name: Install Tarantool EE SDK
140140
run: |
@@ -144,7 +144,7 @@ jobs:
144144
rm -f ${ARCHIVE_NAME}
145145
146146
- name: Setup Python for tests
147-
uses: actions/setup-python@v2
147+
uses: actions/setup-python@v4
148148
with:
149149
python-version: ${{ matrix.python }}
150150

@@ -196,15 +196,15 @@ jobs:
196196
- '3.10'
197197
steps:
198198
- name: Clone the connector repo
199-
uses: actions/checkout@v2
199+
uses: actions/checkout@v3
200200

201201
- name: Install tarantool ${{ matrix.tarantool }}
202-
uses: tarantool/setup-tarantool@v1
202+
uses: tarantool/setup-tarantool@v2
203203
with:
204204
tarantool-version: ${{ matrix.tarantool }}
205205

206206
- name: Setup Python for tests
207-
uses: actions/setup-python@v2
207+
uses: actions/setup-python@v4
208208
with:
209209
python-version: ${{ matrix.python }}
210210

@@ -252,10 +252,10 @@ jobs:
252252

253253
steps:
254254
- name: Clone the connector
255-
uses: actions/checkout@v2
255+
uses: actions/checkout@v3
256256

257257
- name: Setup Python for tests
258-
uses: actions/setup-python@v2
258+
uses: actions/setup-python@v4
259259
with:
260260
python-version: ${{ matrix.python }}
261261

@@ -266,7 +266,7 @@ jobs:
266266
run: pip3 install -r requirements-test.txt
267267

268268
- name: Setup WSL for tarantool
269-
uses: Vampire/setup-wsl@v1
269+
uses: Vampire/setup-wsl@v2
270270
with:
271271
distribution: Ubuntu-20.04
272272

@@ -329,10 +329,10 @@ jobs:
329329
- '3.10'
330330
steps:
331331
- name: Clone the connector repo
332-
uses: actions/checkout@v2
332+
uses: actions/checkout@v3
333333

334334
- name: Setup Python for tests
335-
uses: actions/setup-python@v2
335+
uses: actions/setup-python@v4
336336
with:
337337
python-version: ${{ matrix.python }}
338338

@@ -346,7 +346,7 @@ jobs:
346346
run: pip3 install -r requirements-test.txt
347347

348348
- name: Setup WSL for tarantool
349-
uses: Vampire/setup-wsl@v1
349+
uses: Vampire/setup-wsl@v2
350350
with:
351351
distribution: Ubuntu-20.04
352352

0 commit comments

Comments
 (0)