Skip to content

Commit 917f8b8

Browse files
committed
chore: update dependencies and improve compatibility with latest versions
- 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>
1 parent 78e7f47 commit 917f8b8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v3
2323
- name: copy file via ssh password
24-
uses: appleboy/scp-action@v0.1.6
24+
uses: appleboy/scp-action@v0.1.7
2525
with:
2626
host: ${{ secrets.HOST }}
2727
username: ${{ secrets.USERNAME }}
@@ -137,7 +137,7 @@ Copy file via a SSH password:
137137

138138
```yaml
139139
- name: copy file via ssh password
140-
uses: appleboy/scp-action@v0.1.6
140+
uses: appleboy/scp-action@v0.1.7
141141
with:
142142
host: example.com
143143
username: foo
@@ -151,7 +151,7 @@ Copy file via a SSH key:
151151

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

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

180180
```diff
181-
uses: appleboy/scp-action@v0.1.6
181+
uses: appleboy/scp-action@v0.1.7
182182
with:
183183
- host: "example.com"
184184
+ host: "foo.com,bar.com"
@@ -192,7 +192,7 @@ Example configuration for multiple servers:
192192
Example configuration for exclude custom files:
193193

194194
```yaml
195-
uses: appleboy/scp-action@v0.1.6
195+
uses: appleboy/scp-action@v0.1.7
196196
with:
197197
host: "example.com"
198198
username: foo
@@ -226,7 +226,7 @@ Upload artifact files to remote server:
226226
path: distfiles
227227
228228
- name: copy file to server
229-
uses: appleboy/scp-action@v0.1.6
229+
uses: appleboy/scp-action@v0.1.7
230230
with:
231231
host: ${{ secrets.HOST }}
232232
username: ${{ secrets.USERNAME }}
@@ -240,7 +240,7 @@ Remove the specified number of leading path elements:
240240

241241
```yaml
242242
- name: remove the specified number of leading path elements
243-
uses: appleboy/scp-action@v0.1.6
243+
uses: appleboy/scp-action@v0.1.7
244244
with:
245245
host: ${{ secrets.HOST }}
246246
username: ${{ secrets.USERNAME }}
@@ -286,7 +286,7 @@ Only copy files that are newer than the corresponding destination files:
286286
separator: ","
287287
288288
- name: copy file to server
289-
uses: appleboy/scp-action@v0.1.6
289+
uses: appleboy/scp-action@v0.1.7
290290
with:
291291
host: ${{ secrets.HOST }}
292292
username: ${{ secrets.USERNAME }}
@@ -300,7 +300,7 @@ Protecting a Private Key. The purpose of the passphrase is usually to encrypt th
300300

301301
```diff
302302
- name: ssh key with passphrase
303-
uses: appleboy/scp-action@v0.1.6
303+
uses: appleboy/scp-action@v0.1.7
304304
with:
305305
host: ${{ secrets.HOST }}
306306
username: ${{ secrets.USERNAME }}
@@ -329,7 +329,7 @@ Convert the target path to a Unix path: `/c/path/to/target/`
329329

330330
```diff
331331
- name: Copy to Windows
332-
uses: appleboy/scp-action@v0.1.6
332+
uses: appleboy/scp-action@v0.1.7
333333
with:
334334
host: ${{ secrets.HOST }}
335335
username: ${{ secrets.USERNAME }}

0 commit comments

Comments
 (0)