FTP-Deploy-Action icon indicating copy to clipboard operation
FTP-Deploy-Action copied to clipboard

Version 4 - Error: Timeout (control socket)

Open ghost opened this issue 3 years ago β€’ 54 comments

Bug Description I used the config from https://github.com/SamKirkland/FTP-Deploy-Action/blob/beta-v4/README.md but it doesn't seem to work for me:

 Error: Timeout (control socket)
    at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/beta-v4/dist/index.js:3701:58)
    at Object.onceWrapper (events.js:299:28)
    at Socket.emit (events.js:210:5)
    at Socket._onTimeout (net.js:469:8)
    at listOnTimeout (internal/timers.js:531:17)
    at processTimers (internal/timers.js:475:7)

My hoster requires ftps:// connections which I have entered in my repo secrets. The repo is set to private.

My Action Config

on: push
name: Deploy Shop 2020
jobs:
  web-deploy:
    name: πŸš€ Deploy website every commit
    runs-on: ubuntu-latest
    steps:
    - name: 🚚 Get latest code
      uses: actions/[email protected]

    - name: πŸ“‚ Sync files
      uses: SamKirkland/FTP-Deploy-Action@beta-v4
      with:
        server: f1234.myhost.de
        username: myFtpUserName
        password: aPasswordWithoutSpacesOrSpecialCharactersLikeQuotes
        protocol: ftps
        port: 990
My Action Log ``` 2020-09-08T08:51:35.2946566Z ##[section]Starting: Request a runner to run this job 2020-09-08T08:51:35.7218243Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest' 2020-09-08T08:51:35.7218344Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest' 2020-09-08T08:51:35.7218751Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest' 2020-09-08T08:51:35.9278034Z ##[section]Finishing: Request a runner to run this job 2020-09-08T08:51:42.5550000Z Current runner version: '2.273.0' 2020-09-08T08:51:42.5579785Z ##[group]Operating System 2020-09-08T08:51:42.5580617Z Ubuntu 2020-09-08T08:51:42.5580897Z 18.04.5 2020-09-08T08:51:42.5581188Z LTS 2020-09-08T08:51:42.5581689Z ##[endgroup] 2020-09-08T08:51:42.5581947Z ##[group]Virtual Environment 2020-09-08T08:51:42.5582227Z Environment: ubuntu-18.04 2020-09-08T08:51:42.5582477Z Version: 20200901.1 2020-09-08T08:51:42.5582861Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu18/20200901.1/images/linux/Ubuntu1804-README.md 2020-09-08T08:51:42.5583361Z ##[endgroup] 2020-09-08T08:51:42.5584690Z Prepare workflow directory 2020-09-08T08:51:42.5795758Z Prepare all required actions 2020-09-08T08:51:42.5809925Z Download action repository 'actions/[email protected]' 2020-09-08T08:51:43.9682506Z Download action repository 'SamKirkland/FTP-Deploy-Action@beta-v4' 2020-09-08T08:51:44.9956742Z ##[group]Run actions/[email protected] 2020-09-08T08:51:44.9957330Z with: 2020-09-08T08:51:44.9957802Z repository: HybridSupply/shop.hybridsupply.de-2020 2020-09-08T08:51:44.9958389Z token: *** 2020-09-08T08:51:44.9958619Z ssh-strict: true 2020-09-08T08:51:44.9958830Z persist-credentials: true 2020-09-08T08:51:44.9959041Z clean: true 2020-09-08T08:51:44.9959301Z fetch-depth: 1 2020-09-08T08:51:44.9959503Z lfs: false 2020-09-08T08:51:44.9959705Z submodules: false 2020-09-08T08:51:44.9959979Z ##[endgroup] 2020-09-08T08:51:45.9544234Z Syncing repository: HybridSupply/shop.hybridsupply.de-2020 2020-09-08T08:51:45.9545198Z ##[group]Getting Git version info 2020-09-08T08:51:45.9545900Z Working directory is '/home/runner/work/shop.hybridsupply.de-2020/shop.hybridsupply.de-2020' 2020-09-08T08:51:45.9551098Z [command]/usr/bin/git version 2020-09-08T08:51:45.9551709Z git version 2.28.0 2020-09-08T08:51:45.9553585Z ##[endgroup] 2020-09-08T08:51:45.9554560Z Deleting the contents of '/home/runner/work/shop.hybridsupply.de-2020/shop.hybridsupply.de-2020' 2020-09-08T08:51:45.9556534Z ##[group]Initializing the repository 2020-09-08T08:51:45.9557847Z [command]/usr/bin/git init /home/runner/work/shop.hybridsupply.de-2020/shop.hybridsupply.de-2020 2020-09-08T08:51:45.9558399Z Initialized empty Git repository in /home/runner/work/shop.hybridsupply.de-2020/shop.hybridsupply.de-2020/.git/ 2020-09-08T08:51:45.9558962Z [command]/usr/bin/git remote add origin https://github.com/HybridSupply/shop.hybridsupply.de-2020 2020-09-08T08:51:45.9559363Z ##[endgroup] 2020-09-08T08:51:45.9559612Z ##[group]Disabling automatic garbage collection 2020-09-08T08:51:45.9560065Z [command]/usr/bin/git config --local gc.auto 0 2020-09-08T08:51:45.9560391Z ##[endgroup] 2020-09-08T08:51:45.9562102Z ##[group]Setting up auth 2020-09-08T08:51:45.9562656Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2020-09-08T08:51:45.9563277Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2020-09-08T08:51:45.9563843Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2020-09-08T08:51:45.9564594Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2020-09-08T08:51:45.9565295Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2020-09-08T08:51:45.9565615Z ##[endgroup] 2020-09-08T08:51:45.9565900Z ##[group]Fetching the repository 2020-09-08T08:51:45.9566553Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +5fb519c5779f0a161023c34ac12d956cb17762ed:refs/remotes/origin/master 2020-09-08T08:51:46.8177874Z remote: Enumerating objects: 11210, done. 2020-09-08T08:51:46.8191266Z remote: Counting objects: 0% (1/11210) 2020-09-08T08:51:46.8193627Z remote: Counting objects: 1% (113/11210) 2020-09-08T08:51:46.8196816Z remote: Counting objects: 2% (225/11210) 2020-09-08T08:51:46.8198557Z remote: Counting objects: 3% (337/11210) 2020-09-08T08:51:46.8199000Z remote: Counting objects: 4% (449/11210) 2020-09-08T08:51:46.8200710Z remote: Counting objects: 5% (561/11210) 2020-09-08T08:51:46.8202117Z remote: Counting objects: 6% (673/11210) 2020-09-08T08:51:46.8592526Z remote: Counting objects: 7% (785/11210) 2020-09-08T08:51:46.8593164Z remote: Counting objects: 8% (897/11210) 2020-09-08T08:51:46.8593635Z remote: Counting objects: 9% (1009/11210) 2020-09-08T08:51:46.8594090Z remote: Counting objects: 10% (1121/11210) 2020-09-08T08:51:46.8616701Z remote: Counting objects: 11% (1234/11210) 2020-09-08T08:51:46.8617494Z remote: Counting objects: 12% (1346/11210) 2020-09-08T08:51:46.8618072Z remote: Counting objects: 13% (1458/11210) 2020-09-08T08:51:46.8618297Z remote: Counting objects: 14% (1570/11210) 2020-09-08T08:51:46.8618546Z remote: Counting objects: 15% (1682/11210) 2020-09-08T08:51:46.8618821Z remote: Counting objects: 16% (1794/11210) 2020-09-08T08:51:46.8619043Z remote: Counting objects: 17% (1906/11210) 2020-09-08T08:51:46.8619287Z remote: Counting objects: 18% (2018/11210) 2020-09-08T08:51:46.8619508Z remote: Counting objects: 19% (2130/11210) 2020-09-08T08:51:46.8619756Z remote: Counting objects: 20% (2242/11210) 2020-09-08T08:51:46.8619975Z remote: Counting objects: 21% (2355/11210) 2020-09-08T08:51:46.8620195Z remote: Counting objects: 22% (2467/11210) 2020-09-08T08:51:46.8620472Z remote: Counting objects: 23% (2579/11210) 2020-09-08T08:51:46.8620705Z remote: Counting objects: 24% (2691/11210) 2020-09-08T08:51:46.8620929Z remote: Counting objects: 25% (2803/11210) 2020-09-08T08:51:46.8621168Z remote: Counting objects: 26% (2915/11210) 2020-09-08T08:51:46.8621421Z remote: Counting objects: 27% (3027/11210) 2020-09-08T08:51:46.8621643Z remote: Counting objects: 28% (3139/11210) 2020-09-08T08:51:46.8622022Z remote: Counting objects: 29% (3251/11210) 2020-09-08T08:51:46.8622230Z remote: Counting objects: 30% (3363/11210) 2020-09-08T08:51:46.8622509Z remote: Counting objects: 31% (3476/11210) 2020-09-08T08:51:46.8622824Z remote: Counting objects: 32% (3588/11210) 2020-09-08T08:51:46.8623039Z remote: Counting objects: 33% (3700/11210) 2020-09-08T08:51:46.8623282Z remote: Counting objects: 34% (3812/11210) 2020-09-08T08:51:46.8623496Z remote: Counting objects: 35% (3924/11210) 2020-09-08T08:51:46.8623706Z remote: Counting objects: 36% (4036/11210) 2020-09-08T08:51:46.8624090Z remote: Counting objects: 37% (4148/11210) 2020-09-08T08:51:46.8624612Z remote: Counting objects: 38% (4260/11210) 2020-09-08T08:51:46.8624874Z remote: Counting objects: 39% (4372/11210) 2020-09-08T08:51:46.8625103Z remote: Counting objects: 40% (4484/11210) 2020-09-08T08:51:46.8625356Z remote: Counting objects: 41% (4597/11210) 2020-09-08T08:51:46.8625576Z remote: Counting objects: 42% (4709/11210) 2020-09-08T08:51:46.8625794Z remote: Counting objects: 43% (4821/11210) 2020-09-08T08:51:46.8626009Z remote: Counting objects: 44% (4933/11210) 2020-09-08T08:51:46.8626290Z remote: Counting objects: 45% (5045/11210) 2020-09-08T08:51:46.8626506Z remote: Counting objects: 46% (5157/11210) 2020-09-08T08:51:46.8626725Z remote: Counting objects: 47% (5269/11210) 2020-09-08T08:51:46.8626966Z remote: Counting objects: 48% (5381/11210) 2020-09-08T08:51:46.8627191Z remote: Counting objects: 49% (5493/11210) 2020-09-08T08:51:46.8627417Z remote: Counting objects: 50% (5605/11210) 2020-09-08T08:51:46.8627663Z remote: Counting objects: 51% (5718/11210) 2020-09-08T08:51:46.8628904Z remote: Counting objects: 52% (5830/11210) 2020-09-08T08:51:46.8629721Z remote: Counting objects: 53% (5942/11210) 2020-09-08T08:51:46.8629998Z remote: Counting objects: 54% (6054/11210) 2020-09-08T08:51:46.8630225Z remote: Counting objects: 55% (6166/11210) 2020-09-08T08:51:46.8630446Z remote: Counting objects: 56% (6278/11210) 2020-09-08T08:51:46.8630685Z remote: Counting objects: 57% (6390/11210) 2020-09-08T08:51:46.8630902Z remote: Counting objects: 58% (6502/11210) 2020-09-08T08:51:46.8631171Z remote: Counting objects: 59% (6614/11210) 2020-09-08T08:51:46.8631389Z remote: Counting objects: 60% (6726/11210) 2020-09-08T08:51:46.8631634Z remote: Counting objects: 61% (6839/11210) 2020-09-08T08:51:46.8631855Z remote: Counting objects: 62% (6951/11210) 2020-09-08T08:51:46.8632206Z remote: Counting objects: 63% (7063/11210) 2020-09-08T08:51:46.8632449Z remote: Counting objects: 64% (7175/11210) 2020-09-08T08:51:46.8632719Z remote: Counting objects: 65% (7287/11210) 2020-09-08T08:51:46.8632998Z remote: Counting objects: 66% (7399/11210) 2020-09-08T08:51:46.8633215Z remote: Counting objects: 67% (7511/11210) 2020-09-08T08:51:46.8633469Z remote: Counting objects: 68% (7623/11210) 2020-09-08T08:51:46.8633688Z remote: Counting objects: 69% (7735/11210) 2020-09-08T08:51:46.8633924Z remote: Counting objects: 70% (7847/11210) 2020-09-08T08:51:46.8634233Z remote: Counting objects: 71% (7960/11210) 2020-09-08T08:51:46.8634450Z remote: Counting objects: 72% (8072/11210) 2020-09-08T08:51:46.8634667Z remote: Counting objects: 73% (8184/11210) 2020-09-08T08:51:46.8634942Z remote: Counting objects: 74% (8296/11210) 2020-09-08T08:51:46.8635187Z remote: Counting objects: 75% (8408/11210) 2020-09-08T08:51:46.8635424Z remote: Counting objects: 76% (8520/11210) 2020-09-08T08:51:46.8635644Z remote: Counting objects: 77% (8632/11210) 2020-09-08T08:51:46.8635873Z remote: Counting objects: 78% (8744/11210) 2020-09-08T08:51:46.8636091Z remote: Counting objects: 79% (8856/11210) 2020-09-08T08:51:46.8636308Z remote: Counting objects: 80% (8968/11210) 2020-09-08T08:51:46.8636555Z remote: Counting objects: 81% (9081/11210) 2020-09-08T08:51:46.8636852Z remote: Counting objects: 82% (9193/11210) 2020-09-08T08:51:46.8637087Z remote: Counting objects: 83% (9305/11210) 2020-09-08T08:51:46.8637306Z remote: Counting objects: 84% (9417/11210) 2020-09-08T08:51:46.8637522Z remote: Counting objects: 85% (9529/11210) 2020-09-08T08:51:46.8945012Z remote: Counting objects: 86% (9641/11210) 2020-09-08T08:51:46.9199007Z remote: Counting objects: 87% (9753/11210) 2020-09-08T08:51:46.9282750Z remote: Counting objects: 88% (9865/11210) 2020-09-08T08:51:46.9283386Z remote: Counting objects: 89% (9977/11210) 2020-09-08T08:51:46.9283811Z remote: Counting objects: 90% (10089/11210) 2020-09-08T08:51:46.9284291Z remote: Counting objects: 91% (10202/11210) 2020-09-08T08:51:46.9284600Z remote: Counting objects: 92% (10314/11210) 2020-09-08T08:51:46.9295934Z remote: Counting objects: 93% (10426/11210) 2020-09-08T08:51:46.9296417Z remote: Counting objects: 94% (10538/11210) 2020-09-08T08:51:46.9387549Z remote: Counting objects: 95% (10650/11210) 2020-09-08T08:51:46.9429496Z remote: Counting objects: 96% (10762/11210) 2020-09-08T08:51:46.9430012Z remote: Counting objects: 97% (10874/11210) 2020-09-08T08:51:46.9430342Z remote: Counting objects: 98% (10986/11210) 2020-09-08T08:51:46.9477494Z remote: Counting objects: 99% (11098/11210) 2020-09-08T08:51:46.9478030Z remote: Counting objects: 100% (11210/11210) 2020-09-08T08:51:46.9478628Z remote: Counting objects: 100% (11210/11210), done. 2020-09-08T08:51:46.9492778Z remote: Compressing objects: 0% (1/7242) 2020-09-08T08:51:46.9493611Z remote: Compressing objects: 1% (73/7242) 2020-09-08T08:51:46.9521091Z remote: Compressing objects: 2% (145/7242) 2020-09-08T08:51:46.9521642Z remote: Compressing objects: 3% (218/7242) 2020-09-08T08:51:46.9522123Z remote: Compressing objects: 4% (290/7242) 2020-09-08T08:51:46.9522407Z remote: Compressing objects: 5% (363/7242) 2020-09-08T08:51:46.9522882Z remote: Compressing objects: 6% (435/7242) 2020-09-08T08:51:46.9523163Z remote: Compressing objects: 7% (507/7242) 2020-09-08T08:51:46.9523431Z remote: Compressing objects: 8% (580/7242) 2020-09-08T08:51:46.9529065Z remote: Compressing objects: 9% (652/7242) 2020-09-08T08:51:46.9529312Z remote: Compressing objects: 10% (725/7242) 2020-09-08T08:51:46.9537322Z remote: Compressing objects: 11% (797/7242) 2020-09-08T08:51:46.9741136Z remote: Compressing objects: 12% (870/7242) 2020-09-08T08:51:46.9741774Z remote: Compressing objects: 13% (942/7242) 2020-09-08T08:51:46.9742220Z remote: Compressing objects: 14% (1014/7242) 2020-09-08T08:51:46.9742674Z remote: Compressing objects: 15% (1087/7242) 2020-09-08T08:51:46.9743103Z remote: Compressing objects: 16% (1159/7242) 2020-09-08T08:51:46.9743491Z remote: Compressing objects: 17% (1232/7242) 2020-09-08T08:51:46.9743866Z remote: Compressing objects: 18% (1304/7242) 2020-09-08T08:51:46.9744256Z remote: Compressing objects: 19% (1376/7242) 2020-09-08T08:51:46.9745163Z remote: Compressing objects: 20% (1449/7242) 2020-09-08T08:51:46.9745565Z remote: Compressing objects: 21% (1521/7242) 2020-09-08T08:51:46.9745950Z remote: Compressing objects: 22% (1594/7242) 2020-09-08T08:51:46.9746350Z remote: Compressing objects: 23% (1666/7242) 2020-09-08T08:51:46.9746761Z remote: Compressing objects: 24% (1739/7242) 2020-09-08T08:51:46.9747086Z remote: Compressing objects: 25% (1811/7242) 2020-09-08T08:51:46.9747449Z remote: Compressing objects: 26% (1883/7242) 2020-09-08T08:51:46.9748816Z remote: Compressing objects: 27% (1956/7242) 2020-09-08T08:51:46.9749058Z remote: Compressing objects: 28% (2028/7242) 2020-09-08T08:51:46.9749450Z remote: Compressing objects: 29% (2101/7242) 2020-09-08T08:51:46.9749832Z remote: Compressing objects: 30% (2173/7242) 2020-09-08T08:51:46.9750115Z remote: Compressing objects: 31% (2246/7242) 2020-09-08T08:51:46.9750846Z remote: Compressing objects: 32% (2318/7242) 2020-09-08T08:51:47.0084470Z remote: Compressing objects: 33% (2390/7242) 2020-09-08T08:51:47.0084992Z remote: Compressing objects: 34% (2463/7242) 2020-09-08T08:51:47.0085372Z remote: Compressing objects: 35% (2535/7242) 2020-09-08T08:51:47.0085783Z remote: Compressing objects: 36% (2608/7242) 2020-09-08T08:51:47.0086244Z remote: Compressing objects: 37% (2680/7242) 2020-09-08T08:51:47.0086643Z remote: Compressing objects: 38% (2752/7242) 2020-09-08T08:51:47.0087116Z remote: Compressing objects: 39% (2825/7242) 2020-09-08T08:51:47.0087619Z remote: Compressing objects: 40% (2897/7242) 2020-09-08T08:51:47.0088033Z remote: Compressing objects: 41% (2970/7242) 2020-09-08T08:51:47.0088253Z remote: Compressing objects: 42% (3042/7242) 2020-09-08T08:51:47.0088532Z remote: Compressing objects: 43% (3115/7242) 2020-09-08T08:51:47.0088768Z remote: Compressing objects: 44% (3187/7242) 2020-09-08T08:51:47.0088988Z remote: Compressing objects: 45% (3259/7242) 2020-09-08T08:51:47.0089270Z remote: Compressing objects: 46% (3332/7242) 2020-09-08T08:51:47.0089497Z remote: Compressing objects: 47% (3404/7242) 2020-09-08T08:51:47.0089726Z remote: Compressing objects: 48% (3477/7242) 2020-09-08T08:51:47.0089943Z remote: Compressing objects: 49% (3549/7242) 2020-09-08T08:51:47.0090569Z remote: Compressing objects: 50% (3621/7242) 2020-09-08T08:51:47.0091557Z remote: Compressing objects: 51% (3694/7242) 2020-09-08T08:51:47.0092339Z remote: Compressing objects: 52% (3766/7242) 2020-09-08T08:51:47.0092798Z remote: Compressing objects: 53% (3839/7242) 2020-09-08T08:51:47.0093007Z remote: Compressing objects: 54% (3911/7242) 2020-09-08T08:51:47.0093566Z remote: Compressing objects: 55% (3984/7242) 2020-09-08T08:51:47.0093846Z remote: Compressing objects: 56% (4056/7242) 2020-09-08T08:51:47.0094229Z remote: Compressing objects: 57% (4128/7242) 2020-09-08T08:51:47.0094593Z remote: Compressing objects: 58% (4201/7242) 2020-09-08T08:51:47.0094896Z remote: Compressing objects: 59% (4273/7242) 2020-09-08T08:51:47.0095279Z remote: Compressing objects: 60% (4346/7242) 2020-09-08T08:51:47.0095513Z remote: Compressing objects: 61% (4418/7242) 2020-09-08T08:51:47.0095975Z remote: Compressing objects: 62% (4491/7242) 2020-09-08T08:51:47.0096434Z remote: Compressing objects: 63% (4563/7242) 2020-09-08T08:51:47.0096643Z remote: Compressing objects: 64% (4635/7242) 2020-09-08T08:51:47.0096998Z remote: Compressing objects: 65% (4708/7242) 2020-09-08T08:51:47.0097390Z remote: Compressing objects: 66% (4780/7242) 2020-09-08T08:51:47.0097649Z remote: Compressing objects: 67% (4853/7242) 2020-09-08T08:51:47.0098245Z remote: Compressing objects: 68% (4925/7242) 2020-09-08T08:51:47.0098540Z remote: Compressing objects: 69% (4997/7242) 2020-09-08T08:51:47.0098911Z remote: Compressing objects: 70% (5070/7242) 2020-09-08T08:51:47.0099537Z remote: Compressing objects: 71% (5142/7242) 2020-09-08T08:51:47.0099922Z remote: Compressing objects: 72% (5215/7242) 2020-09-08T08:51:47.0100310Z remote: Compressing objects: 73% (5287/7242) 2020-09-08T08:51:47.0100535Z remote: Compressing objects: 74% (5360/7242) 2020-09-08T08:51:47.0100762Z remote: Compressing objects: 75% (5432/7242) 2020-09-08T08:51:47.0101321Z remote: Compressing objects: 76% (5504/7242) 2020-09-08T08:51:47.0101843Z remote: Compressing objects: 77% (5577/7242) 2020-09-08T08:51:47.0102194Z remote: Compressing objects: 78% (5649/7242) 2020-09-08T08:51:47.0102532Z remote: Compressing objects: 79% (5722/7242) 2020-09-08T08:51:47.0102742Z remote: Compressing objects: 80% (5794/7242) 2020-09-08T08:51:47.0103099Z remote: Compressing objects: 81% (5867/7242) 2020-09-08T08:51:47.0103468Z remote: Compressing objects: 82% (5939/7242) 2020-09-08T08:51:47.0103822Z remote: Compressing objects: 83% (6011/7242) 2020-09-08T08:51:47.0104175Z remote: Compressing objects: 84% (6084/7242) 2020-09-08T08:51:47.0104632Z remote: Compressing objects: 85% (6156/7242) 2020-09-08T08:51:47.0104883Z remote: Compressing objects: 86% (6229/7242) 2020-09-08T08:51:47.0105275Z remote: Compressing objects: 87% (6301/7242) 2020-09-08T08:51:47.0105625Z remote: Compressing objects: 88% (6373/7242) 2020-09-08T08:51:47.0105996Z remote: Compressing objects: 89% (6446/7242) 2020-09-08T08:51:47.0106426Z remote: Compressing objects: 90% (6518/7242) 2020-09-08T08:51:47.0106785Z remote: Compressing objects: 91% (6591/7242) 2020-09-08T08:51:47.0107133Z remote: Compressing objects: 92% (6663/7242) 2020-09-08T08:51:47.0107391Z remote: Compressing objects: 93% (6736/7242) 2020-09-08T08:51:47.0107962Z remote: Compressing objects: 94% (6808/7242) 2020-09-08T08:51:47.0108226Z remote: Compressing objects: 95% (6880/7242) 2020-09-08T08:51:47.0108659Z remote: Compressing objects: 96% (6953/7242) 2020-09-08T08:51:47.0109257Z remote: Compressing objects: 97% (7025/7242) 2020-09-08T08:51:47.0109648Z remote: Compressing objects: 98% (7098/7242) 2020-09-08T08:51:47.0110058Z remote: Compressing objects: 99% (7170/7242) 2020-09-08T08:51:47.0110609Z remote: Compressing objects: 100% (7242/7242) 2020-09-08T08:51:47.0111086Z remote: Compressing objects: 100% (7242/7242), done. 2020-09-08T08:51:47.9349695Z Receiving objects: 0% (1/11210) 2020-09-08T08:51:47.9352652Z Receiving objects: 1% (113/11210) 2020-09-08T08:51:47.9353306Z Receiving objects: 2% (225/11210) 2020-09-08T08:51:47.9353705Z Receiving objects: 3% (337/11210) 2020-09-08T08:51:47.9354084Z Receiving objects: 4% (449/11210) 2020-09-08T08:51:47.9354490Z Receiving objects: 5% (561/11210) 2020-09-08T08:51:47.9354947Z Receiving objects: 6% (673/11210) 2020-09-08T08:51:47.9355362Z Receiving objects: 7% (785/11210) 2020-09-08T08:51:47.9355761Z Receiving objects: 8% (897/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9356386Z Receiving objects: 9% (1009/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9356870Z Receiving objects: 10% (1121/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9357295Z Receiving objects: 11% (1234/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9357771Z Receiving objects: 12% (1346/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9358169Z Receiving objects: 13% (1458/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9358593Z Receiving objects: 14% (1570/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9358988Z Receiving objects: 15% (1682/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9359374Z Receiving objects: 16% (1794/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9568994Z Receiving objects: 17% (1906/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:47.9621123Z Receiving objects: 18% (2018/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:48.0365675Z Receiving objects: 19% (2130/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:48.3315766Z Receiving objects: 19% (2183/11210), 3.19 MiB | 6.12 MiB/s 2020-09-08T08:51:48.3693964Z Receiving objects: 20% (2242/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4101909Z Receiving objects: 21% (2355/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4133290Z Receiving objects: 22% (2467/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4253562Z Receiving objects: 23% (2579/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4360385Z Receiving objects: 24% (2691/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4360761Z Receiving objects: 25% (2803/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4426178Z Receiving objects: 26% (2915/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4564190Z Receiving objects: 27% (3027/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4629938Z Receiving objects: 28% (3139/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4630299Z Receiving objects: 29% (3251/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4665009Z Receiving objects: 30% (3363/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.4800235Z Receiving objects: 31% (3476/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5051541Z Receiving objects: 32% (3588/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5161739Z Receiving objects: 33% (3700/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5293559Z Receiving objects: 34% (3812/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5294053Z Receiving objects: 35% (3924/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5343404Z Receiving objects: 36% (4036/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5371878Z Receiving objects: 37% (4148/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5394858Z Receiving objects: 38% (4260/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5485151Z Receiving objects: 39% (4372/11210), 16.15 MiB | 15.82 MiB/s 2020-09-08T08:51:48.5528381Z Receiving objects: 40% (4484/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.5556843Z Receiving objects: 41% (4597/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.5581195Z Receiving objects: 42% (4709/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.5933507Z Receiving objects: 43% (4821/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.5956066Z Receiving objects: 44% (4933/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.5969806Z Receiving objects: 45% (5045/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6044805Z Receiving objects: 46% (5157/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6047430Z Receiving objects: 47% (5269/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6097515Z Receiving objects: 48% (5381/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6160825Z Receiving objects: 49% (5493/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6188685Z Receiving objects: 50% (5605/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6219449Z Receiving objects: 51% (5718/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6287765Z Receiving objects: 52% (5830/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6421901Z Receiving objects: 53% (5942/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6499731Z Receiving objects: 54% (6054/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6551850Z Receiving objects: 55% (6166/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6614004Z Receiving objects: 56% (6278/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6850230Z Receiving objects: 57% (6390/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.6933872Z Receiving objects: 58% (6502/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7031944Z Receiving objects: 59% (6614/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7032177Z Receiving objects: 60% (6726/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7047526Z Receiving objects: 61% (6839/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7065882Z Receiving objects: 62% (6951/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7220603Z Receiving objects: 63% (7063/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7273589Z Receiving objects: 64% (7175/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7296585Z Receiving objects: 65% (7287/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7362017Z Receiving objects: 66% (7399/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7467900Z Receiving objects: 67% (7511/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7545989Z Receiving objects: 68% (7623/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7573752Z Receiving objects: 69% (7735/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7649105Z Receiving objects: 70% (7847/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7649348Z Receiving objects: 71% (7960/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7679735Z Receiving objects: 72% (8072/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7702115Z Receiving objects: 73% (8184/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7738954Z Receiving objects: 74% (8296/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7795086Z Receiving objects: 75% (8408/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7870614Z Receiving objects: 76% (8520/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7891924Z Receiving objects: 77% (8632/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7943111Z Receiving objects: 78% (8744/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7956446Z Receiving objects: 79% (8856/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.7981852Z Receiving objects: 80% (8968/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.8264001Z Receiving objects: 81% (9081/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.8276029Z Receiving objects: 82% (9193/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.8312715Z Receiving objects: 83% (9305/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.8671275Z Receiving objects: 84% (9417/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:48.9288739Z Receiving objects: 85% (9529/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:49.0235651Z Receiving objects: 86% (9641/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:49.0731607Z Receiving objects: 86% (9714/11210), 28.81 MiB | 18.95 MiB/s 2020-09-08T08:51:49.2659633Z Receiving objects: 87% (9753/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3086318Z Receiving objects: 88% (9865/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3104733Z Receiving objects: 89% (9977/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3134932Z Receiving objects: 90% (10089/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3175420Z Receiving objects: 91% (10202/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3285893Z Receiving objects: 92% (10314/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3389115Z Receiving objects: 93% (10426/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3457350Z Receiving objects: 94% (10538/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.3902510Z Receiving objects: 95% (10650/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4037966Z Receiving objects: 96% (10762/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4058165Z Receiving objects: 97% (10874/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4313738Z Receiving objects: 98% (10986/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4612331Z Receiving objects: 99% (11098/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4614067Z remote: Total 11210 (delta 3611), reused 11161 (delta 3600), pack-reused 0 2020-09-08T08:51:49.4647415Z Receiving objects: 100% (11210/11210), 42.21 MiB | 20.88 MiB/s 2020-09-08T08:51:49.4648000Z Receiving objects: 100% (11210/11210), 54.43 MiB | 22.27 MiB/s, done. 2020-09-08T08:51:49.4671438Z Resolving deltas: 0% (0/3611) 2020-09-08T08:51:49.4680342Z Resolving deltas: 1% (41/3611) 2020-09-08T08:51:49.4691845Z Resolving deltas: 2% (75/3611) 2020-09-08T08:51:49.4713062Z Resolving deltas: 3% (113/3611) 2020-09-08T08:51:49.4729073Z Resolving deltas: 4% (145/3611) 2020-09-08T08:51:49.4745851Z Resolving deltas: 5% (182/3611) 2020-09-08T08:51:49.4772431Z Resolving deltas: 6% (218/3611) 2020-09-08T08:51:49.4786356Z Resolving deltas: 7% (253/3611) 2020-09-08T08:51:49.4797154Z Resolving deltas: 8% (289/3611) 2020-09-08T08:51:49.4804645Z Resolving deltas: 9% (327/3611) 2020-09-08T08:51:49.4849081Z Resolving deltas: 10% (362/3611) 2020-09-08T08:51:49.4871873Z Resolving deltas: 11% (414/3611) 2020-09-08T08:51:49.4935764Z Resolving deltas: 12% (435/3611) 2020-09-08T08:51:49.4961071Z Resolving deltas: 13% (473/3611) 2020-09-08T08:51:49.4968646Z Resolving deltas: 14% (510/3611) 2020-09-08T08:51:49.4978556Z Resolving deltas: 15% (546/3611) 2020-09-08T08:51:49.4992244Z Resolving deltas: 16% (579/3611) 2020-09-08T08:51:49.5031110Z Resolving deltas: 17% (615/3611) 2020-09-08T08:51:49.5041838Z Resolving deltas: 18% (653/3611) 2020-09-08T08:51:49.5057363Z Resolving deltas: 19% (687/3611) 2020-09-08T08:51:49.5066306Z Resolving deltas: 20% (726/3611) 2020-09-08T08:51:49.5069791Z Resolving deltas: 21% (773/3611) 2020-09-08T08:51:49.5075186Z Resolving deltas: 22% (797/3611) 2020-09-08T08:51:49.5098085Z Resolving deltas: 23% (832/3611) 2020-09-08T08:51:49.5111133Z Resolving deltas: 24% (867/3611) 2020-09-08T08:51:49.5118675Z Resolving deltas: 25% (913/3611) 2020-09-08T08:51:49.5128314Z Resolving deltas: 26% (959/3611) 2020-09-08T08:51:49.5133656Z Resolving deltas: 27% (986/3611) 2020-09-08T08:51:49.5140844Z Resolving deltas: 28% (1018/3611) 2020-09-08T08:51:49.5148160Z Resolving deltas: 30% (1086/3611) 2020-09-08T08:51:49.5159535Z Resolving deltas: 31% (1120/3611) 2020-09-08T08:51:49.5165622Z Resolving deltas: 32% (1156/3611) 2020-09-08T08:51:49.5174863Z Resolving deltas: 33% (1198/3611) 2020-09-08T08:51:49.5182241Z Resolving deltas: 34% (1231/3611) 2020-09-08T08:51:49.5190406Z Resolving deltas: 35% (1264/3611) 2020-09-08T08:51:49.5204507Z Resolving deltas: 36% (1303/3611) 2020-09-08T08:51:49.5211997Z Resolving deltas: 37% (1340/3611) 2020-09-08T08:51:49.5221657Z Resolving deltas: 38% (1374/3611) 2020-09-08T08:51:49.5241522Z Resolving deltas: 39% (1411/3611) 2020-09-08T08:51:49.5246825Z Resolving deltas: 40% (1446/3611) 2020-09-08T08:51:49.5251643Z Resolving deltas: 41% (1493/3611) 2020-09-08T08:51:49.5257463Z Resolving deltas: 42% (1521/3611) 2020-09-08T08:51:49.5261834Z Resolving deltas: 43% (1570/3611) 2020-09-08T08:51:49.5269121Z Resolving deltas: 44% (1589/3611) 2020-09-08T08:51:49.5274246Z Resolving deltas: 45% (1632/3611) 2020-09-08T08:51:49.5281385Z Resolving deltas: 46% (1665/3611) 2020-09-08T08:51:49.5289910Z Resolving deltas: 47% (1698/3611) 2020-09-08T08:51:49.5295289Z Resolving deltas: 48% (1734/3611) 2020-09-08T08:51:49.5300663Z Resolving deltas: 49% (1770/3611) 2020-09-08T08:51:49.5312232Z Resolving deltas: 50% (1806/3611) 2020-09-08T08:51:49.5324960Z Resolving deltas: 51% (1843/3611) 2020-09-08T08:51:49.5334892Z Resolving deltas: 52% (1878/3611) 2020-09-08T08:51:49.5341540Z Resolving deltas: 53% (1924/3611) 2020-09-08T08:51:49.5349246Z Resolving deltas: 54% (1951/3611) 2020-09-08T08:51:49.5358157Z Resolving deltas: 55% (1987/3611) 2020-09-08T08:51:49.5365846Z Resolving deltas: 56% (2030/3611) 2020-09-08T08:51:49.5375927Z Resolving deltas: 57% (2060/3611) 2020-09-08T08:51:49.5382371Z Resolving deltas: 58% (2095/3611) 2020-09-08T08:51:49.5389741Z Resolving deltas: 59% (2131/3611) 2020-09-08T08:51:49.5397814Z Resolving deltas: 60% (2169/3611) 2020-09-08T08:51:49.5405390Z Resolving deltas: 61% (2203/3611) 2020-09-08T08:51:49.5415401Z Resolving deltas: 62% (2239/3611) 2020-09-08T08:51:49.5428629Z Resolving deltas: 63% (2276/3611) 2020-09-08T08:51:49.5435201Z Resolving deltas: 64% (2321/3611) 2020-09-08T08:51:49.5441981Z Resolving deltas: 65% (2348/3611) 2020-09-08T08:51:49.5448805Z Resolving deltas: 66% (2384/3611) 2020-09-08T08:51:49.5459841Z Resolving deltas: 67% (2421/3611) 2020-09-08T08:51:49.5467490Z Resolving deltas: 68% (2456/3611) 2020-09-08T08:51:49.5477924Z Resolving deltas: 69% (2492/3611) 2020-09-08T08:51:49.5492078Z Resolving deltas: 70% (2530/3611) 2020-09-08T08:51:49.5498767Z Resolving deltas: 71% (2568/3611) 2020-09-08T08:51:49.5505618Z Resolving deltas: 72% (2602/3611) 2020-09-08T08:51:49.5512022Z Resolving deltas: 73% (2640/3611) 2020-09-08T08:51:49.5520634Z Resolving deltas: 74% (2681/3611) 2020-09-08T08:51:49.5527260Z Resolving deltas: 75% (2713/3611) 2020-09-08T08:51:49.5536413Z Resolving deltas: 76% (2753/3611) 2020-09-08T08:51:49.5550140Z Resolving deltas: 77% (2785/3611) 2020-09-08T08:51:49.5557295Z Resolving deltas: 78% (2822/3611) 2020-09-08T08:51:49.5570158Z Resolving deltas: 79% (2854/3611) 2020-09-08T08:51:49.5587076Z Resolving deltas: 80% (2889/3611) 2020-09-08T08:51:49.5601991Z Resolving deltas: 81% (2925/3611) 2020-09-08T08:51:49.5612743Z Resolving deltas: 82% (2963/3611) 2020-09-08T08:51:49.5622101Z Resolving deltas: 83% (2998/3611) 2020-09-08T08:51:49.5633597Z Resolving deltas: 84% (3035/3611) 2020-09-08T08:51:49.5650335Z Resolving deltas: 85% (3070/3611) 2020-09-08T08:51:49.5663616Z Resolving deltas: 86% (3106/3611) 2020-09-08T08:51:49.5668981Z Resolving deltas: 87% (3142/3611) 2020-09-08T08:51:49.5723992Z Resolving deltas: 88% (3179/3611) 2020-09-08T08:51:49.5791773Z Resolving deltas: 89% (3214/3611) 2020-09-08T08:51:49.5799162Z Resolving deltas: 90% (3250/3611) 2020-09-08T08:51:49.5809460Z Resolving deltas: 91% (3292/3611) 2020-09-08T08:51:49.5816329Z Resolving deltas: 92% (3324/3611) 2020-09-08T08:51:49.5825509Z Resolving deltas: 93% (3360/3611) 2020-09-08T08:51:49.5835131Z Resolving deltas: 94% (3396/3611) 2020-09-08T08:51:49.5844070Z Resolving deltas: 95% (3431/3611) 2020-09-08T08:51:49.5852167Z Resolving deltas: 96% (3468/3611) 2020-09-08T08:51:49.5859337Z Resolving deltas: 97% (3504/3611) 2020-09-08T08:51:49.5874960Z Resolving deltas: 98% (3539/3611) 2020-09-08T08:51:49.5986346Z Resolving deltas: 99% (3576/3611) 2020-09-08T08:51:49.5987207Z Resolving deltas: 100% (3611/3611) 2020-09-08T08:51:49.5987673Z Resolving deltas: 100% (3611/3611), done. 2020-09-08T08:51:50.4748582Z From https://github.com/HybridSupply/shop.hybridsupply.de-2020 2020-09-08T08:51:50.4749263Z * [new ref] 5fb519c5779f0a161023c34ac12d956cb17762ed -> origin/master 2020-09-08T08:51:50.4779421Z ##[endgroup] 2020-09-08T08:51:50.4780233Z ##[group]Determining the checkout info 2020-09-08T08:51:50.4790795Z ##[endgroup] 2020-09-08T08:51:50.4791436Z ##[group]Checking out the ref 2020-09-08T08:51:50.4792168Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master 2020-09-08T08:51:51.4995400Z Updating files: 94% (11864/12491) 2020-09-08T08:51:51.5031632Z Updating files: 95% (11867/12491) 2020-09-08T08:51:51.5085041Z Updating files: 96% (11992/12491) 2020-09-08T08:51:51.5253286Z Updating files: 97% (12117/12491) 2020-09-08T08:51:51.5419667Z Updating files: 98% (12242/12491) 2020-09-08T08:51:51.5631024Z Updating files: 99% (12367/12491) 2020-09-08T08:51:51.5631263Z Updating files: 100% (12491/12491) 2020-09-08T08:51:51.5631446Z Updating files: 100% (12491/12491), done. 2020-09-08T08:51:51.5876167Z Reset branch 'master' 2020-09-08T08:51:51.5876653Z Branch 'master' set up to track remote branch 'master' from 'origin'. 2020-09-08T08:51:51.5904065Z ##[endgroup] 2020-09-08T08:51:51.5917349Z [command]/usr/bin/git log -1 2020-09-08T08:51:51.5959680Z commit 5fb519c5779f0a161023c34ac12d956cb17762ed 2020-09-08T08:51:51.5992540Z Author: Jay 2020-09-08T08:51:51.6028181Z Date: Tue Sep 8 10:51:14 2020 +0200 2020-09-08T08:51:51.6028487Z 2020-09-08T08:51:51.6028644Z Test new CI 2020-09-08T08:51:51.6028801Z 2020-09-08T08:51:51.6029526Z - Rename admin dir 2020-09-08T08:51:51.6029831Z - Update MMLC 2020-09-08T08:51:51.6128621Z ##[group]Run SamKirkland/FTP-Deploy-Action@beta-v4 2020-09-08T08:51:51.6128846Z with: 2020-09-08T08:51:51.6129555Z server: *** 2020-09-08T08:51:51.6129749Z username: *** 2020-09-08T08:51:51.6129921Z password: *** 2020-09-08T08:51:51.6130072Z protocol: ftps 2020-09-08T08:51:51.6130230Z port: *** 2020-09-08T08:51:51.6130404Z ##[endgroup] 2020-09-08T08:51:51.6740313Z ---------------------------------------------------------------- 2020-09-08T08:51:51.6743835Z πŸš€ Thanks for using ftp-deploy version 1.0.0. Let's deploy some stuff! 2020-09-08T08:51:51.6744778Z ---------------------------------------------------------------- 2020-09-08T08:51:51.6745026Z If you found this project helpful, please support it 2020-09-08T08:51:51.6746417Z by giving it a ⭐ on Github --> https://github.com/SamKirkland/FTP-Deploy-Action 2020-09-08T08:51:51.6746865Z or add a badge 🏷️ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge 2020-09-08T08:52:25.6922711Z 2020-09-08T08:52:25.6931126Z ---------------------------------------------------------------- 2020-09-08T08:52:25.6931580Z --------------- πŸ”₯πŸ”₯πŸ”₯ A error occurred πŸ”₯πŸ”₯πŸ”₯ -------------- 2020-09-08T08:52:25.6931941Z ---------------------------------------------------------------- 2020-09-08T08:52:25.6932052Z 2020-09-08T08:52:25.6932379Z ---------------------------------------------------------------- 2020-09-08T08:52:25.6932724Z ---------------------- Full Error below ---------------------- 2020-09-08T08:52:25.6943102Z Error: Timeout (control socket) 2020-09-08T08:52:25.6945678Z at Socket. (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/beta-v4/dist/index.js:3701:58) 2020-09-08T08:52:25.6946264Z at Object.onceWrapper (events.js:299:28) 2020-09-08T08:52:25.6946443Z at Socket.emit (events.js:210:5) 2020-09-08T08:52:25.6946614Z at Socket._onTimeout (net.js:469:8) 2020-09-08T08:52:25.6946975Z at listOnTimeout (internal/timers.js:531:17) 2020-09-08T08:52:25.6947381Z at processTimers (internal/timers.js:475:7) 2020-09-08T08:52:25.7038876Z Post job cleanup. 2020-09-08T08:52:25.8138292Z [command]/usr/bin/git version 2020-09-08T08:52:25.8201703Z git version 2.28.0 2020-09-08T08:52:25.8245133Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2020-09-08T08:52:25.8284856Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2020-09-08T08:52:25.8612492Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2020-09-08T08:52:25.8650891Z http.https://github.com/.extraheader 2020-09-08T08:52:25.8661728Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2020-09-08T08:52:26.2457839Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2020-09-08T08:52:26.2912918Z Cleaning up orphan processes ```

ghost avatar Sep 08 '20 08:09 ghost

I'm having issues recreating 😭 Do you mind posting your hosting company?

SamKirkland avatar Sep 08 '20 15:09 SamKirkland

Hey,

sure, the hosting company is called Tralios. It's a German company, is there maybe any documentation you are looking for I can try to find for you?

ghost avatar Sep 09 '20 06:09 ghost

I'd like a ftps account so I can troubleshoot directly. Is there a way to sign-up without my bank info?

SamKirkland avatar Sep 09 '20 18:09 SamKirkland

I setup an FTPS account for you, here are the details: https://onetimesecret.com/secret/dhfscnm8j0qf46rfazn2zz5f66mj6op this link will expire after it has been clicked once so I just hope that you get to click it in time. Otherwise please contact me via the e-mail on my profile and I will send you another.

ghost avatar Sep 10 '20 06:09 ghost

Go it.

Thanks a bunch! I'll dig into this and let you know what I figure out.

SamKirkland avatar Sep 10 '20 18:09 SamKirkland

Any update on this? I'm experiencing the same issue trying to connect to my ftp account.

eltongonc avatar Nov 14 '20 14:11 eltongonc

Same issue over here, just realized my deploy action which was on master switched over to 4.x and is broken now. (which is odd that it says Thanks for using ftp-deploy version 1.0.0. In any case, locking to 3.1.1 and reverting my action config worked in the meantime.

 Warning: Unexpected input(s) 'known-hosts', valid inputs are ['server', 'username', 'password', 'port', 'protocol', 'local-dir', 'server-dir', 'state-name', 'dry-run', 'dangerous-clean-slate', 'exclude', 'log-level', 'security']
Run SamKirkland/[email protected]
----------------------------------------------------------------
πŸš€ Thanks for using ftp-deploy version 1.0.0. Let's deploy some stuff!   
----------------------------------------------------------------
If you found this project helpful, please support it
by giving it a ⭐ on Github --> https://github.com/SamKirkland/FTP-Deploy-Action
or add a badge 🏷️ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge

----------------------------------------------------------------
---------------  πŸ”₯πŸ”₯πŸ”₯ A error occurred  πŸ”₯πŸ”₯πŸ”₯  --------------
----------------------------------------------------------------

----------------------------------------------------------------
----------------------  Full Error below  ----------------------
Error: Timeout (control socket)
    at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3794:58)
    at Object.onceWrapper (events.js:299:28)
    at Socket.emit (events.js:210:5)
    at Socket._onTimeout (net.js:469:8)
    at listOnTimeout (internal/timers.js:531:17)
    at processTimers (internal/timers.js:475:7)
Error: Error: Timeout (control socket)

I'm using a Digital Ocean droplet.

alancwoo avatar Nov 17 '20 15:11 alancwoo

@SamKirkland is there any news regarding the error message: Error: Timeout (control socket) I'm using sftp also and provide the param ftps for protocol. Still getting the error.

mafiusu avatar Nov 19 '20 18:11 mafiusu

My guess here is that you would need to add some keep alive commands to keep the connection open.

johngeoffrey avatar Nov 23 '20 09:11 johngeoffrey

@alancwoo I signed up for a digital ocean trial, digital ocean is using SFTP. This action dropped support in v4 for SFTP, I'd recommend using one of the many rsync actions instead, because SFTP has more capabilities than ftp/ftps your deployments can go even faster! It looks like digital ocean just doesn't reply to the request to connect over non SFTP, I have a pending change to output a friendly error message suggesting SFTP might be the issue in this case.

@mafiusu I have looked into this issue on and off over the last few weeks. I haven't been able to create this issue except for a single occurrence 😞. As for the fix @johngeoffrey is correct, read here and here for more info. The connection is being closed because it's encrypted and routers don't know it's a long-lived request. Because this issue is dependent on the routers between the source and target server it's very hard to recreate, especially on my local machine.

@jayhybrid was kind enough to provide a testing ftps account for me, and I was able to recreate the issue a single time. But ever since the connection stays open for the length of the deployment. Even if I don't send any request for several minutes.

I'm not sure what to do at this point. If it is as simple as sending noopt commands during long-running requests this fix would be easy. But I need to recreate the issue to confirm and verify a fix.

SamKirkland avatar Nov 23 '20 17:11 SamKirkland

I was able to recreate the issue a single time

Does this mean it seems to happen randomly? It hasn't worked for me at all so far, I would be satisfied if it would work sometimes, should I just keep trying?

grandeljay avatar Nov 25 '20 13:11 grandeljay

I was consistently getting the issues when trying to sync a directory with lots of folders. The command for creating folders doesn't appear to be enough to keep alive the connection, only transferring files does keep it alive

johngeoffrey avatar Nov 25 '20 14:11 johngeoffrey

@grandeljay This issues is dependent on which routers your traffic is traveling through. In my case the route from github-->server isn't static and sometimes (exceeding rare) it travels through a router that will drop the connection. In your case this route could be static, always traveling over a router that is dropping the connection. If you want to see if you have a static route you can run TRACERT multiple times and compare.

@johngeoffrey thanks for that additional information. In my case it happened on a large file so maybe my issue was unrelated?!?

@grandeljay or @johngeoffrey - would either of you be willing to give me a very limited ftp account (please do not give me a account with root folder access, I don't want to delete anything). I'm also willing to sign up for a host to try this out, which host do you currently use?

SamKirkland avatar Nov 25 '20 15:11 SamKirkland

@SamKirkland the credentials I gave you here in https://github.com/SamKirkland/FTP-Deploy-Action/issues/106#issuecomment-690009345 are still active, feel free to keep testing.

EDIT: forgot to mention, I've merged my accounts. I am @jayhybrid.

grandeljay avatar Nov 25 '20 15:11 grandeljay

is there any news regarding the error message?

milan-sahana avatar Dec 02 '20 19:12 milan-sahana

@milan-sahana I got the error message using sftp. Then I tried it with ftp and it worked fine!

mafiusu avatar Dec 02 '20 19:12 mafiusu

Hello all! I have encountered the exact same issue and in my case, it was Cloudflare securing my hostname (through a proxy). Disabled it (DNS only option), and everything works ok now.

Screenshot: Screenshot_1

Hope this helps anyone with Cloudflare enabled.

p.s.: Another workaround is to put your ftp's IP instead of hostname and bypass cloudflare's proxy.

melask avatar Feb 08 '21 09:02 melask

I'm also experiencing this exact timeout. Is this repo still being maintained?

MalcolmMcFly avatar Feb 16 '21 03:02 MalcolmMcFly

Me too had problems because my hosting supports SFTP instead of FPTS. I switched to FTP only and works.

nuthinking avatar Mar 01 '21 23:03 nuthinking

same problem when trying to use secure FTP

Misko77 avatar Mar 30 '21 14:03 Misko77

I am having this problem with FTPS deploy to Azure. Seems to fail right around teh 30 second mark. This is not intermittent, it happens every single time.

mcthick avatar May 20 '21 21:05 mcthick

Seems to be the same problem for me. Some of the files upload successfully, but at some point it fails.

400 level error from server when performing action - retrying...
FTPError: 450 Transfer aborted. Link to file server lost
    at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
    at TLSSocket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
    at TLSSocket.emit (events.js:210:5)
    at addChunk (_stream_readable.js:309:12)
    at readableAddChunk (_stream_readable.js:286:13)
    at TLSSocket.Readable.push (_stream_readable.js:224:10)
    at TLSWrap.onStreamRead (internal/stream_base_commons.js:182:23) {
  name: 'FTPError',
  code: 450
}

Using German hosting provider "All Inkl" and FTPS.

LiBa001 avatar Jun 06 '21 19:06 LiBa001

me too

williansmartins avatar Jun 18 '21 01:06 williansmartins

Same here! =/

eversonaraujo avatar Jun 22 '21 00:06 eversonaraujo

Isn't it because maybe server doesn't accept data connection on a new port and this script is trying to send a new file on a new port? (because timeout happens on second file transfer each and every time and other control commands like create directory works just fine)

`Uploading to xxx.xxx.xxx.xxx:56147 (No encryption)
upload progress for "asset-manifest.json". Progress: 0 bytes of 0 bytes
upload progress for "asset-manifest.json". Progress: 1412 bytes of 1412 bytes
< 226-File successfully transferred
226 0.187 seconds (measured here), 7.37 Kbytes per second

  file uploaded
uploading "index.html"
> EPSV
< 229 Extended Passive mode OK (|||53736|)

> STOR index.html
< 150 Accepted data connection

Uploading to xxx.xxx.xxx.xxx:53736 (No encryption)
upload progress for "index.html". Progress: 0 bytes of 1412 bytes
upload progress for "index.html". Progress: 3050 bytes of 4462 bytes
----------------------------------------------------------------
--------------  πŸ”₯πŸ”₯πŸ”₯ an error occurred  πŸ”₯πŸ”₯πŸ”₯  --------------
----------------------------------------------------------------

----------------------------------------------------------------
----------------------  full error below  ----------------------
----------------------------------------------------------------

Error: Timeout (control socket)`

Maybe a conflict with passive FTP?

InnocentCivilian avatar Jun 30 '21 05:06 InnocentCivilian

I deleted the .ftp-deploy-sync-state.json file from the server and the action would run again without the timeout error. The file on the server was over 1.6MB so I assume that had something to do with it? Maybe the action trying to read this file back is causing an error? @SamKirkland possibly something to look at.

dlbone avatar Jul 15 '21 05:07 dlbone

Same issue with dreamhost, anyone figured out a sloution ?

aliHabib123 avatar Jul 16 '21 00:07 aliHabib123

I just upgraded my action from 4.0.0 to 4.1.0 and mine started working again even though I didn't see my issue in any of the specific bug fixes of that version.

dlbone avatar Jul 16 '21 01:07 dlbone

I had the same issue and found that it was because I was using Cloudflare which had a DNS record proxying my FTP server. If you are using any such service then test your FTP connection using ftptest.net or any other FTP client and see if you are able to make a connection or not. You can simply set your ftp.yourdomain.etc to "DNS only" and unproxy that in the DNS section records list. Hope that'll work.

eHK95 avatar Sep 16 '21 10:09 eHK95

doesn't work with Amazon servers

Error: Timeout (control socket) at Socket. (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3793:58) at Object.onceWrapper (events.js:299:28) at Socket.emit (events.js:210:5) at Socket._onTimeout (net.js:469:8) at listOnTimeout (internal/timers.js:531:17) at processTimers (internal/timers.js:475:7) Error: Error: Timeout (control socket)

leomarsousajr avatar Oct 13 '21 19:10 leomarsousajr

@leomarsousajr Well I use it for Amazon servers all the time (EC2s) and it works fine.

dlbone avatar Oct 13 '21 23:10 dlbone

I'm getting the same error, for me it seems server hangs up when changing dir. Tried both sftp and ftp.

creating folder "assets/"
  changing dir to assets

----------------------------------------------------------------
--------------  πŸ”₯πŸ”₯πŸ”₯ an error occurred  πŸ”₯πŸ”₯πŸ”₯  --------------
----------------------------------------------------------------

----------------------------------------------------------------
----------------------  full error below  ----------------------
----------------------------------------------------------------

Error: Client is closed
    at /home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:3890:29
    at new Promise (<anonymous>)
    at FTPContext.handle (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:3870:16)
    at Client.sendIgnoringError (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:2918:25)
    at Client._openDir (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:3436:20)
    at Client.ensureDir (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:3427:24)
    at /home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:2256:121
    at Generator.next (<anonymous>)
    at /home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:2241:71
    at new Promise (<anonymous>)
Closing reason: Error: Timeout (control socket)
    at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.1.0/dist/index.js:3979:58)
    at Object.onceWrapper (events.js:299:28)
    at Socket.emit (events.js:210:5)
    at Socket._onTimeout (net.js:469:8)
    at listOnTimeout (internal/timers.js:531:17)
    at processTimers (internal/timers.js:475:7) {
  code: '0'
}
Error: Error: Client is closed

EDIT: My hosting tells me it has a maximum of 10 connections. Might that cause the error?

jimhaakman avatar Oct 20 '21 09:10 jimhaakman

People!!! I am using SFT, and the problem it is resolve to me! just change version to 2

  - name: FTP-Deploy-Action
  uses: SamKirkland/[email protected]
  env:
    FTP_SERVER: ${{ secrets.ftp_host }}
    FTP_USERNAME: ${{ secrets.ftp_user }}
    FTP_PASSWORD: ${{ secrets.ftp_password }}
    LOCAL_DIR: app/src/app/
    REMOTE_DIR: /srv/loungeprime.com.br/www/sistema
    METHOD: sftp
    PORT: 22
    ARGS: --verbose

williansmartins avatar Oct 26 '21 16:10 williansmartins

People!!! I am using SFT, and the problem it is resolve to me! just change version to 2

  - name: FTP-Deploy-Action
  uses: SamKirkland/[email protected]
  env:
    FTP_SERVER: ${{ secrets.ftp_host }}
    FTP_USERNAME: ${{ secrets.ftp_user }}
    FTP_PASSWORD: ${{ secrets.ftp_password }}
    LOCAL_DIR: app/src/app/
    REMOTE_DIR: /srv/loungeprime.com.br/www/sistema
    METHOD: sftp
    PORT: 22
    ARGS: --verbose

In version 2.0.0 also performed successfully. The latest version gives Timeout (control socket)

thomazcia avatar Nov 17 '21 18:11 thomazcia

I fixed this by unblocking port 21 on my server (cpanel) so it could be a firewall issue as well.

tvillafane avatar Jan 17 '22 01:01 tvillafane

3.1.1 ε…·ζœ‰ι‡δΌ ζœΊεˆΆοΌŒε―δ»₯θ―•θ―•ηœ‹3.1.1

  uses: SamKirkland/[email protected]

image

wangrui1573 avatar May 17 '22 08:05 wangrui1573

@wangrui1573 If you are trying to publish to a server within china/russia please see this comment

SamKirkland avatar May 17 '22 19:05 SamKirkland

I struggled with the mentioned issue for a while; after several tests the following seems to be working:

on: push
name: πŸš€ Deploy website on push
jobs:
  web-deploy:
    name: πŸŽ‰ Deploy
    runs-on: ubuntu-latest
    steps:
    - name: 🚚 Get latest code
      uses: actions/checkout@v3
    
    - name: πŸ“‚ Sync files
      uses: 
      with:
        server: ${{ secrets.FTP_SERVER }}
        username: ${{ secrets.FTP_USERNAME }}
        password: ${{ secrets.FTP_PASSSORD }}
        server-dir: ./dev/

Regards Irvin

Irvin-tl avatar May 18 '22 00:05 Irvin-tl

@wangrui1573 If you are trying to publish to a server within china/russia please see this comment

But why I can deploy my app to the server when it runs on Linux and macOS through easingthemes/ssh-deploy@main? Does the Windows virtual machine have some special aspect or FTP-Deploy-Action have?

Luciennnnnnn avatar Jun 09 '22 06:06 Luciennnnnnn

Is there any workaround for this issue??

Ruitjes avatar Jun 14 '22 15:06 Ruitjes

Is there any workaround for this issue??

At least for me, the workaround was downgrading to version 2.0.0

timlg07 avatar Jul 04 '22 19:07 timlg07

Is there any workaround for this issue??

At least for me, the workaround was downgrading to version 2.0.0

Thanks for the response, I just ditched the ftp actions and used git-ftp

Ruitjes avatar Jul 04 '22 19:07 Ruitjes

Hello all! I have encountered the exact same issue and in my case, it was Cloudflare securing my hostname (through a proxy). Disabled it (DNS only option), and everything works ok now.

Screenshot: Screenshot_1

Hope this helps anyone with Cloudflare enabled.

p.s.: Another workaround is to put your ftp's IP instead of hostname and bypass cloudflare's proxy.

This worked !! Thank You !!

Safnaj avatar Jul 17 '22 18:07 Safnaj

For me (using IONOS Windows Hosting) switch to version 2.0.0 also "solved" the problem. Hope you will find the differences so that we can switch back to the latest version. Thanks for your support!

lg2de avatar Aug 25 '22 19:08 lg2de