This error can happen when you are accessing the SSH URL (Read/Write) instead of Git Read-Only URL but you have no write access to that repo.
Sometimes you just want to clone your own repo, e.g. deploy to a server. In this case you actually only need READ-ONLY access. But since that's your own repo, github displays SSH access with URL by default if you are logged in. In this situation, if your remote host's public key is not in your Github SSH Keys, your access will be denied, which is expected to happen.
An equivalent case is when you clone someone else's repo to which you have no write access with SSH URL.
In a word, if your intent is to clone-only a repo, use Git Read-Only URL (git://github.com/{user_name}/{project_name}.git) instead of SSH URL (git@github.com:{user_name}/{project_name}.git), which avoids (unnecessary) public key validation.