ssh-agent icon indicating copy to clipboard operation
ssh-agent copied to clipboard

GitHub Action to setup `ssh-agent` with a private key

Results 83 ssh-agent issues
Sort by recently updated
recently updated
newest added

In my workflow l use the action [upterm](https://github.com/marketplace/actions/debugging-with-ssh) for debugging purposes. If I use the `ssh-agent` action before the `upterm` action, the second action throws the error: ``` Creating a...

help wanted

I get this comment at the the end of the action: ``` Comment for (public) key 'ssh-ed25519 ' does not match GitHub URL pattern. Not treating it as a GitHub...

Fix link to issue #11 referenced in REAME

Should hopefully be a fix for #100

I tried this action and in the output for the adding ssh-agent step, I see the following message for each key i added: ``` Comment for key 'ssh-rsa blablamykey= (stdin)'...

help wanted

This allows to run the action multiple times to add multiple keys without removing already added ones. Test run: https://github.com/ojab/ssh-agent/runs/5110810177, both keys are added.

The actions: ``` - uses: webfactory/[email protected] with: ssh-private-key: | ${{ secrets.KEY1}} ${{ secrets.KEY2}} - name: Test Pkg Add Pkg1 run: julia --project=docs/ -e 'using Pkg; Pkg.add(url="[email protected]:Org/Pkg1.jl.git");' ``` Configuring deployment key(s)...

I was trying to install multiple ssh keys to my virtual machine, by researching through existing issue, I found this solution: https://github.com/webfactory/ssh-agent/issues/30#issuecomment-677782910 Which seemed to work perfectly. It works fine...

Hi! I followed the docs to setup multiple ssh keys by generating them with comment parameter `-C` and adding the git URL from my GitHub Enterprise repo. `https://private-github.myenterprise/org/repo.git` I ensured...