Skip to content

Commit

Permalink
docs: update appleboy/ssh-action version in README
Browse files Browse the repository at this point in the history
- 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 <[email protected]>
  • Loading branch information
appleboy committed Jul 23, 2023
1 parent 8d9094f commit 55dabf8
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down Expand Up @@ -164,7 +164,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```yaml
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -177,7 +177,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```yaml
- name: executing remote ssh commands using ssh key
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -190,7 +190,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```yaml
- name: multiple command
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -207,7 +207,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```diff
- name: multiple host
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
- host: "foo.com"
+ host: "foo.com,bar.com"
Expand All @@ -223,7 +223,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```diff
- name: multiple host
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
- host: "foo.com"
+ host: "foo.com:1234,bar.com:5678"
Expand All @@ -238,7 +238,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```diff
- name: multiple host
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: "foo.com,bar.com"
+ sync: true
Expand All @@ -254,7 +254,7 @@ ssh-keygen -t ed25519 -a 200 -C "[email protected]"

```diff
- name: pass environment
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
+ env:
+ FOO: "BAR"
+ BAR: "FOO"
Expand All @@ -279,7 +279,7 @@ _Inside `env` object, you need to pass every environment variable as a string, p
```diff
- name: stop script if command error
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down Expand Up @@ -332,7 +332,7 @@ Host FooServer

```diff
- name: ssh proxy command
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -355,7 +355,7 @@ It is not uncommon for files to leak from backups or decommissioned hardware, an

```diff
- name: ssh key passphrase
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -381,7 +381,7 @@ Now you can adjust you config:

```diff
- name: ssh key passphrase
uses: appleboy/ssh-action@v0.1.10
uses: appleboy/ssh-action@v0.2.0
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down

0 comments on commit 55dabf8

Please sign in to comment.