Skip to content

Commit f684497

Browse files
committed
v3.1.0
Official release of known-hosts
1 parent a54cf4c commit f684497

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/test-ftp-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: FTP-Deploy-Action
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@master
8+
- uses: actions/checkout@v2.1.0
99
with:
1010
fetch-depth: 2
1111
- name: FTP-Deploy-Action

.github/workflows/test-sftp-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: FTP-Deploy-Action
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@master
8+
- uses: actions/checkout@v2.1.0
99
with:
1010
fetch-depth: 2
1111
- name: FTP-Deploy-Action

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
name: FTP-Deploy-Action
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@master
22+
- uses: actions/checkout@v2.1.0
2323
with:
2424
fetch-depth: 2
2525
- name: FTP-Deploy-Action
26-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
26+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
2727
with:
2828
ftp-server: ftp://ftp.samkirkland.com/
2929
ftp-username: myFtpUserName
@@ -179,11 +179,11 @@ jobs:
179179
name: FTP-Deploy-Action
180180
runs-on: ubuntu-latest
181181
steps:
182-
- uses: actions/checkout@master
182+
- uses: actions/checkout@v2.1.0
183183
with:
184184
fetch-depth: 2
185185
- name: FTP-Deploy-Action
186-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
186+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
187187
with:
188188
ftp-server: ftp://ftp.samkirkland.com/
189189
ftp-username: myFtpUserName
@@ -207,12 +207,12 @@ jobs:
207207
name: FTP-Deploy-Action
208208
runs-on: ubuntu-latest
209209
steps:
210-
- uses: actions/checkout@master
210+
- uses: actions/checkout@v2.1.0
211211
with:
212212
fetch-depth: 2
213213
214214
- name: FTP-Deploy-Action
215-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
215+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
216216
with:
217217
ftp-server: ftps://ftp.samkirkland.com:21/
218218
ftp-username: myFTPSUsername
@@ -254,12 +254,12 @@ jobs:
254254
name: FTP-Deploy-Action
255255
runs-on: ubuntu-latest
256256
steps:
257-
- uses: actions/checkout@master
257+
- uses: actions/checkout@v2.1.0
258258
with:
259259
fetch-depth: 2
260260
261261
- name: FTP-Deploy-Action
262-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
262+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
263263
with:
264264
ftp-server: sftp://ftp.samkirkland.com:7280/
265265
ftp-username: mySFTPUsername
@@ -280,7 +280,7 @@ jobs:
280280
name: FTP-Deploy-Action
281281
runs-on: ubuntu-latest
282282
steps:
283-
- uses: actions/checkout@master
283+
- uses: actions/checkout@v2.1.0
284284
with:
285285
fetch-depth: 2
286286
@@ -298,7 +298,7 @@ jobs:
298298
run: ls
299299
300300
- name: FTP-Deploy-Action
301-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
301+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
302302
with:
303303
ftp-server: ftp://ftp.samkirkland.com/
304304
ftp-username: myFTPUsername
@@ -316,12 +316,12 @@ jobs:
316316
name: FTP-Deploy-Action
317317
runs-on: ubuntu-latest
318318
steps:
319-
- uses: actions/checkout@master
319+
- uses: actions/checkout@v2.1.0
320320
with:
321321
fetch-depth: 2
322322
323323
- name: FTP-Deploy-Action
324-
uses: SamKirkland/FTP-Deploy-Action@3.0.0
324+
uses: SamKirkland/FTP-Deploy-Action@3.1.0
325325
with:
326326
ftp-server: ftp://ftp.samkirkland.com/
327327
ftp-username: myFTPUsername
@@ -345,7 +345,7 @@ See the [`.git-ftp-ignore`](#ignore-specific-files-when-deploying) example secti
345345

346346
By default only different files are uploaded.
347347

348-
Verify you have `with: fetch-depth: 2` in your `actions/checkout@master` step. The last 2 checkins are required in order to determine differences
348+
Verify you have `with: fetch-depth: 2` in your `actions/checkout@v2.1.0` step. The last 2 checkins are required in order to determine differences
349349

350350
If you've had multiple git commits without deploying, all files will be uploaded to get back in sync
351351

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ inputs:
1313
required: true
1414
local-dir:
1515
description: 'The local folder to copy, defaults to root project folder'
16-
defaults: ./
16+
default: ./
1717
required: false
1818
git-ftp-args:
1919
description: 'Passes through options into git-ftp'
20-
defaults:
20+
default:
2121
required: false
2222
runs:
2323
using: 'docker'

v2-v3-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Migrating from v2 to v3
22

3-
`uses: actions/checkout@master` must now have the option `fetch-depth: 2`
3+
`uses: actions/checkout@v2.1.0` must now have the option `fetch-depth: 2`
44

55
Without the `fetch-depth` option diffs cannot be calculated and all files will be uploaded.
66

0 commit comments

Comments
 (0)