Skip to content

Commit 2c24cd3

Browse files
committed
1 parent 14b23d5 commit 2c24cd3

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/packaging.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Clone the module
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
# fetch-depth is 1 by default and it is okay for
3232
# building from a tag. However it is convenient to
3333
# have correct version for builds between tags too.
3434
fetch-depth: 0
3535

3636
- name: Clone packpack
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
with:
3939
repository: packpack/packpack
4040
path: packpack
@@ -45,7 +45,7 @@ jobs:
4545
export DIST=${{ matrix.platform.dist }}
4646
./packpack/packpack
4747
48-
- uses: actions/upload-artifact@v2
48+
- uses: actions/upload-artifact@v3
4949
with:
5050
name: ${{ format('{0}-{1}', matrix.platform.os, matrix.platform.dist) }}
5151
path: build
@@ -179,7 +179,7 @@ jobs:
179179
# }}} Install tarantool
180180

181181
- name: Download the module package
182-
uses: actions/download-artifact@v2
182+
uses: actions/download-artifact@v3
183183
with:
184184
name: ${{ format('{0}-{1}', matrix.platform.os, matrix.platform.dist) }}
185185

@@ -206,7 +206,7 @@ jobs:
206206
if: matrix.platform.os == 'debian' || matrix.platform.os == 'ubuntu'
207207

208208
- name: Clone the module
209-
uses: actions/checkout@v2
209+
uses: actions/checkout@v3
210210

211211
- name: Run tests
212212
run: |

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.ref == 'refs/heads/master'
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- uses: tarantool/rocks.tarantool.org/github-action@master
1515
with:
1616
auth: ${{ secrets.ROCKS_AUTH }}
@@ -20,7 +20,7 @@ jobs:
2020
if: startsWith(github.ref, 'refs/tags/')
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424

2525
# Create a rockspec for the release.
2626
- run: printf '%s=%s\n' TAG "${GITHUB_REF##*/}" >> "${GITHUB_ENV}"
@@ -48,7 +48,7 @@ jobs:
4848
# LuaJIT's FFI and tarantool specific features are okay.
4949
#
5050
# [1]: https://github.com/luarocks/luarocks/wiki/Types-of-rocks
51-
- uses: tarantool/setup-tarantool@v1
51+
- uses: tarantool/setup-tarantool@v2
5252
with:
5353
tarantool-version: '1.10'
5454
- run: tarantoolctl rocks pack smtp-${{ env.TAG }}-1.rockspec

.github/workflows/reusable_testing.yml

Lines changed: 2 additions & 2 deletions
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 smtp module'
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
repository: ${{ github.repository_owner }}/smtp
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

.github/workflows/testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
printf '%s=%s\n' T_VERSION "${T_VERSION}" >> "${GITHUB_ENV}"
7373
7474
- name: Install tarantool ${{ matrix.tarantool }}
75-
uses: tarantool/setup-tarantool@v1
75+
uses: tarantool/setup-tarantool@v2
7676
with:
7777
tarantool-version: '${{ env.T_VERSION }}'
7878
nightly-build: ${{ startsWith(matrix.tarantool, 'live/') }}
@@ -101,7 +101,7 @@ jobs:
101101
if: matrix.break_system_libcurl_header
102102

103103
- name: Clone the module
104-
uses: actions/checkout@v2
104+
uses: actions/checkout@v3
105105

106106
- name: Build the module
107107
run: cmake . && make
@@ -161,7 +161,7 @@ jobs:
161161
if: matrix.tarantool == 'brew'
162162

163163
- name: Cache built tarantool ${{ env.T_VERSION }}
164-
uses: actions/cache@v2
164+
uses: actions/cache@v3
165165
id: cache
166166
with:
167167
path: ${{ env.T_DESTDIR }}
@@ -184,7 +184,7 @@ jobs:
184184
if: matrix.tarantool != 'brew' && steps.cache.outputs.cache-hit != 'true'
185185

186186
- name: Clone tarantool ${{ env.T_VERSION }}
187-
uses: actions/checkout@v2
187+
uses: actions/checkout@v3
188188
with:
189189
repository: tarantool/tarantool
190190
ref: ${{ env.T_VERSION }}
@@ -270,7 +270,7 @@ jobs:
270270
if: matrix.tarantool != 'brew' && matrix.tarantool != 'master'
271271

272272
- name: Clone the module
273-
uses: actions/checkout@v2
273+
uses: actions/checkout@v3
274274
with:
275275
path: ${{ env.SRCDIR }}
276276

0 commit comments

Comments
 (0)