I've upgraded my app to Laravel 7 (with Laravel Nova). But now my github action is failing:
- Installing laravel/nova (3.0.x-dev 73f71a3): Downloading (connecting...)Downloading (0%) Downloading (failed) Failed to download laravel/nova from dist: The "https://api.github.com/repos/laravel/nova/zipball/73f71a38401dfbdfd6130a0fcc392a9c621b4e45" file could not be downloaded (HTTP/1.1 404 Not Found)
Now trying to download from source
- Installing laravel/nova (3.0.x-dev 73f71a3): Cloning 73f71a3840
[RuntimeException]
Failed to execute git clone --no-checkout '[email protected]:laravel/nova.git' '/__w/project/vendor/laravel/nova' && cd '/__w/orihect/vendor/laravel/nova' && git remote add composer '[email protected]:laravel/nova.git' && git fetch composer && git remote set-url origin '[email protected]:laravel/nova.git' && git remote set-url composer '[email protected]:laravel/nova.git'
Cloning into '/__w/project/vendor/laravel/nova'...
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I've defined the NOVA_USERNAME and NOVA_PASSWORD in my github secrets. It was working before but now it doesn't. Nova is updated to version 3 has it something to do with that?
Cloning into '/__w/project/vendor/laravel/nova'...
Host key verification failed. fatal:
Could not read from remote repository.
Host key verification failed mostly means that you are not allowed to pull the repo over [email protected]:laravel/nova because your SSH key is not available inside the runner.