Skip to content

Commit 55dabf8

Browse files
committed
docs: update appleboy/ssh-action version in README
- Update the version of `appleboy/ssh-action` from `v0.1.10` to `v0.2.0` in multiple places in the README file. Signed-off-by: appleboy <appleboy.tw@gmail.com>
1 parent 8d9094f commit 55dabf8

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- name: executing remote ssh commands using password
66-
uses: appleboy/ssh-action@v0.1.10
66+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
167+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
180+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
193+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
210+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
226+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
241+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
257+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
282+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
335+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
358+
uses: appleboy/ssh-action@v0.2.0
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@v0.1.10
384+
uses: appleboy/ssh-action@v0.2.0
385385
with:
386386
host: ${{ secrets.HOST }}
387387
username: ${{ secrets.USERNAME }}

0 commit comments

Comments
 (0)