6363 runs-on : ubuntu-latest
6464 steps :
6565 - name : executing remote ssh commands using password
66- uses : appleboy/ssh-action@v1.0.0
66+ uses : appleboy/ssh-action@v1.0.1
6767 with :
6868 host : ${{ secrets.HOST }}
6969 username : ${{ secrets.USERNAME }}
@@ -164,7 +164,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
164164
165165``` yaml
166166- name : executing remote ssh commands using password
167- uses : appleboy/ssh-action@v1.0.0
167+ uses : appleboy/ssh-action@v1.0.1
168168 with :
169169 host : ${{ secrets.HOST }}
170170 username : ${{ secrets.USERNAME }}
@@ -177,7 +177,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
177177
178178` ` ` yaml
179179- name : executing remote ssh commands using ssh key
180- uses : appleboy/ssh-action@v1.0.0
180+ uses : appleboy/ssh-action@v1.0.1
181181 with :
182182 host : ${{ secrets.HOST }}
183183 username : ${{ secrets.USERNAME }}
@@ -190,7 +190,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
190190
191191` ` ` yaml
192192- name : multiple command
193- uses : appleboy/ssh-action@v1.0.0
193+ uses : appleboy/ssh-action@v1.0.1
194194 with :
195195 host : ${{ secrets.HOST }}
196196 username : ${{ secrets.USERNAME }}
@@ -207,7 +207,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
207207
208208` ` ` diff
209209 - name : multiple host
210- uses : appleboy/ssh-action@v1.0.0
210+ uses : appleboy/ssh-action@v1.0.1
211211 with :
212212- host : " foo.com"
213213+ host : " foo.com,bar.com"
@@ -223,7 +223,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
223223
224224` ` ` diff
225225 - name : multiple host
226- uses : appleboy/ssh-action@v1.0.0
226+ uses : appleboy/ssh-action@v1.0.1
227227 with :
228228- host : " foo.com"
229229+ host : " foo.com:1234,bar.com:5678"
@@ -238,7 +238,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
238238
239239` ` ` diff
240240 - name : multiple host
241- uses : appleboy/ssh-action@v1.0.0
241+ uses : appleboy/ssh-action@v1.0.1
242242 with :
243243 host : " foo.com,bar.com"
244244+ sync : true
@@ -254,7 +254,7 @@ ssh-keygen -t ed25519 -a 200 -C "your_email@example.com"
254254
255255` ` ` diff
256256 - name : pass environment
257- uses : appleboy/ssh-action@v1.0.0
257+ uses : appleboy/ssh-action@v1.0.1
258258+ env :
259259+ FOO : " BAR"
260260+ BAR : " FOO"
@@ -279,7 +279,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p
279279
280280` ` ` diff
281281 - name: stop script if command error
282- uses: appleboy/ssh-action@v1.0.0
282+ uses: appleboy/ssh-action@v1.0.1
283283 with:
284284 host: ${{ secrets.HOST }}
285285 username: ${{ secrets.USERNAME }}
@@ -332,7 +332,7 @@ Host FooServer
332332
333333` ` ` diff
334334 - name: ssh proxy command
335- uses: appleboy/ssh-action@v1.0.0
335+ uses: appleboy/ssh-action@v1.0.1
336336 with:
337337 host: ${{ secrets.HOST }}
338338 username: ${{ secrets.USERNAME }}
@@ -355,7 +355,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an
355355
356356` ` ` diff
357357 - name: ssh key passphrase
358- uses: appleboy/ssh-action@v1.0.0
358+ uses: appleboy/ssh-action@v1.0.1
359359 with:
360360 host: ${{ secrets.HOST }}
361361 username: ${{ secrets.USERNAME }}
@@ -381,7 +381,7 @@ Now you can adjust you config:
381381
382382` ` ` diff
383383 - name: ssh key passphrase
384- uses: appleboy/ssh-action@v1.0.0
384+ uses: appleboy/ssh-action@v1.0.1
385385 with:
386386 host: ${{ secrets.HOST }}
387387 username: ${{ secrets.USERNAME }}
0 commit comments