64
64
runs-on : ubuntu-latest
65
65
steps :
66
66
- name : executing remote ssh commands using password
67
- uses : appleboy/ssh-action@v1.0.2
67
+ uses : appleboy/ssh-action@v1.0.3
68
68
with :
69
69
host : ${{ secrets.HOST }}
70
70
username : ${{ secrets.USERNAME }}
@@ -165,7 +165,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
165
165
166
166
``` yaml
167
167
- name : executing remote ssh commands using password
168
- uses : appleboy/ssh-action@v1.0.2
168
+ uses : appleboy/ssh-action@v1.0.3
169
169
with :
170
170
host : ${{ secrets.HOST }}
171
171
username : ${{ secrets.USERNAME }}
@@ -178,7 +178,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
178
178
179
179
` ` ` yaml
180
180
- name : executing remote ssh commands using ssh key
181
- uses : appleboy/ssh-action@v1.0.2
181
+ uses : appleboy/ssh-action@v1.0.3
182
182
with :
183
183
host : ${{ secrets.HOST }}
184
184
username : ${{ secrets.USERNAME }}
@@ -191,7 +191,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
191
191
192
192
` ` ` yaml
193
193
- name : multiple command
194
- uses : appleboy/ssh-action@v1.0.2
194
+ uses : appleboy/ssh-action@v1.0.3
195
195
with :
196
196
host : ${{ secrets.HOST }}
197
197
username : ${{ secrets.USERNAME }}
@@ -208,7 +208,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
208
208
209
209
` ` ` diff
210
210
- name : multiple host
211
- uses : appleboy/ssh-action@v1.0.2
211
+ uses : appleboy/ssh-action@v1.0.3
212
212
with :
213
213
- host : " foo.com"
214
214
+ host : " foo.com,bar.com"
@@ -224,7 +224,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
224
224
225
225
` ` ` diff
226
226
- name : multiple host
227
- uses : appleboy/ssh-action@v1.0.2
227
+ uses : appleboy/ssh-action@v1.0.3
228
228
with :
229
229
- host : " foo.com"
230
230
+ host : " foo.com:1234,bar.com:5678"
@@ -239,7 +239,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
239
239
240
240
` ` ` diff
241
241
- name : multiple host
242
- uses : appleboy/ssh-action@v1.0.2
242
+ uses : appleboy/ssh-action@v1.0.3
243
243
with :
244
244
host : " foo.com,bar.com"
245
245
+ sync : true
@@ -255,7 +255,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
255
255
256
256
` ` ` diff
257
257
- name : pass environment
258
- uses : appleboy/ssh-action@v1.0.2
258
+ uses : appleboy/ssh-action@v1.0.3
259
259
+ env :
260
260
+ FOO : " BAR"
261
261
+ BAR : " FOO"
@@ -280,7 +280,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p
280
280
281
281
` ` ` diff
282
282
- name: stop script if command error
283
- uses: appleboy/ssh-action@v1.0.2
283
+ uses: appleboy/ssh-action@v1.0.3
284
284
with:
285
285
host: ${{ secrets.HOST }}
286
286
username: ${{ secrets.USERNAME }}
@@ -333,7 +333,7 @@ Host FooServer
333
333
334
334
` ` ` diff
335
335
- name: ssh proxy command
336
- uses: appleboy/ssh-action@v1.0.2
336
+ uses: appleboy/ssh-action@v1.0.3
337
337
with:
338
338
host: ${{ secrets.HOST }}
339
339
username: ${{ secrets.USERNAME }}
@@ -356,7 +356,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an
356
356
357
357
` ` ` diff
358
358
- name: ssh key passphrase
359
- uses: appleboy/ssh-action@v1.0.2
359
+ uses: appleboy/ssh-action@v1.0.3
360
360
with:
361
361
host: ${{ secrets.HOST }}
362
362
username: ${{ secrets.USERNAME }}
@@ -382,7 +382,7 @@ Now you can adjust you config:
382
382
383
383
` ` ` diff
384
384
- name: ssh key passphrase
385
- uses: appleboy/ssh-action@v1.0.2
385
+ uses: appleboy/ssh-action@v1.0.3
386
386
with:
387
387
host: ${{ secrets.HOST }}
388
388
username: ${{ secrets.USERNAME }}
0 commit comments