36
36
37
37
steps :
38
38
- name : Checkout
39
- uses : actions/checkout@v3
39
+ uses : actions/checkout@v4
40
40
41
41
- name : Install Rust toolchain
42
42
uses : dtolnay/rust-toolchain@master
75
75
76
76
steps :
77
77
- name : Checkout
78
- uses : actions/checkout@v3
78
+ uses : actions/checkout@v4
79
79
80
80
- name : Install Rust toolchain
81
81
uses : dtolnay/rust-toolchain@master
@@ -131,7 +131,7 @@ jobs:
131
131
runs-on : ${{ matrix.os }}
132
132
steps :
133
133
- name : Checkout
134
- uses : actions/checkout@v3
134
+ uses : actions/checkout@v4
135
135
136
136
- name : Install Rust toolchain
137
137
uses : dtolnay/rust-toolchain@master
@@ -162,7 +162,7 @@ jobs:
162
162
cargo build --lib --release --package indy-credx --target ${{ matrix.target }} --features vendored
163
163
164
164
- name : Upload artifacts
165
- uses : actions/upload-artifact@v3
165
+ uses : actions/upload-artifact@v4
166
166
with :
167
167
name : library-${{ matrix.architecture }}
168
168
path : target/${{ matrix.target }}/release/${{ matrix.lib }}
@@ -175,7 +175,7 @@ jobs:
175
175
mkdir release-artifacts
176
176
cp target/${{ matrix.target }}/release/${{ matrix.lib }} release-artifacts/
177
177
178
-
178
+
179
179
if : |
180
180
github.event_name == 'release' ||
181
181
(github.event_name == 'workflow_dispatch' && github.event.inputs.publish-binaries == 'true')
@@ -221,10 +221,10 @@ jobs:
221
221
222
222
steps :
223
223
- name : Checkout
224
- uses : actions/checkout@v3
224
+ uses : actions/checkout@v4
225
225
226
226
- name : Set up Python ${{ matrix.python-version }}
227
- uses : actions/setup-python@v4
227
+ uses : actions/setup-python@v5
228
228
with :
229
229
python-version : ${{ matrix.python-version }}
230
230
@@ -234,7 +234,7 @@ jobs:
234
234
pip install setuptools wheel twine auditwheel
235
235
236
236
- name : Fetch library artifacts
237
- uses : actions/download-artifact@v3
237
+ uses : actions/download-artifact@v4
238
238
with :
239
239
name : library-${{ matrix.architecture }}
240
240
path : wrappers/python/indy_credx/
0 commit comments