Skip to content

Commit

Permalink
chore: update dependencies and improve compatibility with latest vers…
Browse files Browse the repository at this point in the history
…ions

- Update the version of `appleboy/scp-action` from `v0.1.6` to `v0.1.7`

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
  • Loading branch information
appleboy committed Jan 1, 2024
1 parent 78e7f47 commit 917f8b8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: copy file via ssh password
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down Expand Up @@ -137,7 +137,7 @@ Copy file via a SSH password:

```yaml
- name: copy file via ssh password
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: example.com
username: foo
Expand All @@ -151,7 +151,7 @@ Copy file via a SSH key:

```yaml
- name: copy file via ssh key
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -165,7 +165,7 @@ Example configuration for ignore list:

```yaml
- name: copy file via ssh key
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -178,7 +178,7 @@ Example configuration for ignore list:
Example configuration for multiple servers:

```diff
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
- host: "example.com"
+ host: "foo.com,bar.com"
Expand All @@ -192,7 +192,7 @@ Example configuration for multiple servers:
Example configuration for exclude custom files:

```yaml
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: "example.com"
username: foo
Expand Down Expand Up @@ -226,7 +226,7 @@ Upload artifact files to remote server:
path: distfiles

- name: copy file to server
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -240,7 +240,7 @@ Remove the specified number of leading path elements:

```yaml
- name: remove the specified number of leading path elements
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down Expand Up @@ -286,7 +286,7 @@ Only copy files that are newer than the corresponding destination files:
separator: ","

- name: copy file to server
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand All @@ -300,7 +300,7 @@ Protecting a Private Key. The purpose of the passphrase is usually to encrypt th

```diff
- name: ssh key with passphrase
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down Expand Up @@ -329,7 +329,7 @@ Convert the target path to a Unix path: `/c/path/to/target/`

```diff
- name: Copy to Windows
uses: appleboy/scp-action@v0.1.6
uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
Expand Down

0 comments on commit 917f8b8

Please sign in to comment.