Skip to content

Commit 8a24039

Browse files
authoredMar 15, 2023
v4.3.4 (#385)
- updated basic-ftp - new vx.x.x tags
1 parent 89e533f commit 8a24039

File tree

5 files changed

+3091
-1777
lines changed

5 files changed

+3091
-1777
lines changed
 

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v3
2424

2525
- name: 📂 Sync files
26-
uses: SamKirkland/FTP-Deploy-Action@4.3.3
26+
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
2727
with:
2828
server: ftp.samkirkland.com
2929
username: myFtpUserName
@@ -99,7 +99,7 @@ jobs:
9999
npm run build
100100
101101
- name: 📂 Sync files
102-
uses: SamKirkland/FTP-Deploy-Action@4.3.3
102+
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
103103
with:
104104
server: ftp.samkirkland.com
105105
username: myFtpUserName
@@ -119,7 +119,7 @@ jobs:
119119
uses: actions/checkout@v3
120120
121121
- name: 📂 Sync files
122-
uses: SamKirkland/FTP-Deploy-Action@4.3.3
122+
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
123123
with:
124124
server: ftp.samkirkland.com
125125
username: myFtpUserName
@@ -142,7 +142,7 @@ jobs:
142142
uses: actions/checkout@v3
143143
144144
- name: 📂 Sync files
145-
uses: SamKirkland/FTP-Deploy-Action@4.3.3
145+
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
146146
with:
147147
server: ftp.samkirkland.com
148148
username: myFtpUserName
@@ -164,7 +164,7 @@ jobs:
164164
uses: actions/checkout@v3
165165
166166
- name: 📂 Sync files
167-
uses: SamKirkland/FTP-Deploy-Action@4.3.3
167+
uses: SamKirkland/FTP-Deploy-Action@v4.3.4
168168
with:
169169
server: ftp.samkirkland.com
170170
username: myFtpUserName

‎dist/index.js

+121-99
Large diffs are not rendered by default.

‎migration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Most features have been carried forward and improved upon. However, some feature
2727
### How to upgrade
2828

2929
1) Remove `with: fetch-depth: 2`. It is no longer needed and removing it will _slightly_ speed up deployments.
30-
2) Change the version to `4.X.X`, for example `SamKirkland/FTP-Deploy-Action@4.3.1` (please check readme for latest version)
30+
2) Change the version to `4.X.X`, for example `SamKirkland/FTP-Deploy-Action@v4.3.4` (please check readme for latest version)
3131
3) If you have a `.git-ftp-include` file you should delete it. Version 4 tracks files differently and no longer needs this config file.
3232
4) If you have a `.git-ftp-ignore` file, you should transfer the options to the new `exclude` argument. _Note: Version 4 excludes any `.git*` and `node_modules/` files/folders by default_
3333
5) Update your arguments to reflect the following changes

‎package-lock.json

+2,959-1,667
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ftp-deploy-action",
3-
"version": "4.3.3",
3+
"version": "4.3.4",
44
"private": true,
55
"description": "Automate deploying websites and more with this GitHub action",
66
"main": "dist/index.js",
@@ -23,10 +23,10 @@
2323
"license": "MIT",
2424
"dependencies": {
2525
"@actions/core": "^1.9.1",
26-
"@samkirkland/ftp-deploy": "^1.2.2",
27-
"@types/jest": "^28.1.7",
28-
"jest": "^28.1.3",
29-
"ts-jest": "^28.0.8",
26+
"@samkirkland/ftp-deploy": "^1.2.3",
27+
"@types/jest": "^29.4.1",
28+
"jest": "^29.5.0",
29+
"ts-jest": "^29.0.5",
3030
"ts-node-dev": "^2.0.0"
3131
},
3232
"devDependencies": {

0 commit comments

Comments
 (0)
Please sign in to comment.