From 3e84ad0651c115715648342293c4a914bc95be78 Mon Sep 17 00:00:00 2001
From: "Bo-Yi.Wu" <appleboy.tw@gmail.com>
Date: Sun, 9 Apr 2023 18:28:00 +0800
Subject: [PATCH] chore: update GitHub Actions and dependencies

- Update the GitHub Actions `checkout` and `scp-action` versions.

Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
---
 README.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/README.md b/README.md
index 9692c1d..8fa0b99 100644
--- a/README.md
+++ b/README.md
@@ -19,9 +19,9 @@ jobs:
     name: Build
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout@master
+    - uses: actions/checkout@v0.1.4
     - name: copy file via ssh password
-      uses: appleboy/scp-action@master
+      uses: appleboy/scp-action@v0.1.4
       with:
         host: ${{ secrets.HOST }}
         username: ${{ secrets.USERNAME }}
@@ -137,7 +137,7 @@ Copy file via a SSH password:
 
 ```yaml
 - name: copy file via ssh password
-  uses: appleboy/scp-action@master
+  uses: appleboy/scp-action@v0.1.4
   with:
     host: example.com
     username: foo
@@ -151,7 +151,7 @@ Copy file via a SSH key:
 
 ```yaml
 - name: copy file via ssh key
-  uses: appleboy/scp-action@master
+  uses: appleboy/scp-action@v0.1.4
   with:
     host: ${{ secrets.HOST }}
     username: ${{ secrets.USERNAME }}
@@ -165,7 +165,7 @@ Example configuration for ignore list:
 
 ```yaml
 - name: copy file via ssh key
-  uses: appleboy/scp-action@master
+  uses: appleboy/scp-action@v0.1.4
   with:
     host: ${{ secrets.HOST }}
     username: ${{ secrets.USERNAME }}
@@ -178,7 +178,7 @@ Example configuration for ignore list:
 Example configuration for multiple servers:
 
 ```diff
-  uses: appleboy/scp-action@master
+  uses: appleboy/scp-action@v0.1.4
   with:
 -   host: "example.com"
 +   host: "foo.com,bar.com"
@@ -192,7 +192,7 @@ Example configuration for multiple servers:
 Example configuration for exclude custom files:
 
 ```yaml
-  uses: appleboy/scp-action@master
+  uses: appleboy/scp-action@v0.1.4
   with:
     host: "example.com"
     username: foo
@@ -226,7 +226,7 @@ Upload artifact files to remote server:
         path: distfiles
 
     - name: copy file to server
-      uses: appleboy/scp-action@master
+      uses: appleboy/scp-action@v0.1.4
       with:
         host: ${{ secrets.HOST }}
         username: ${{ secrets.USERNAME }}
@@ -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@master
+  uses: appleboy/scp-action@v0.1.4
   with:
     host: ${{ secrets.HOST }}
     username: ${{ secrets.USERNAME }}
@@ -269,7 +269,7 @@ Only copy files that are newer than the corresponding destination files:
         separator: ","
 
     - name: copy file to server
-      uses: appleboy/scp-action@master
+      uses: appleboy/scp-action@v0.1.4
       with:
         host: ${{ secrets.HOST }}
         username: ${{ secrets.USERNAME }}
@@ -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@master
+    uses: appleboy/scp-action@v0.1.4
     with:
       host: ${{ secrets.HOST }}
       username: ${{ secrets.USERNAME }}