Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update node #1

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.16.0
20.12.1
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Run SSH command
author: garygrossgarten
author: glencoesoftware
description: Github Action to run commands on a remote server using SSH
inputs:
command:
Expand Down Expand Up @@ -29,7 +29,7 @@ inputs:
description: "Try keyboard-interactive user authentication if primary user authentication method fails."
required: false
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
branding:
color: "purple"
Expand Down
56 changes: 37 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@garygrossgarten/github-action-ssh",
"version": "0.7.0",
"name": "@glencoesoftware/github-action-ssh",
"version": "0.8.0",
"description": "Run commands on a remote server via SSH.",
"repository": {
"type": "git",
"url": "https://github.com/garygrossgarten/github-action-ssh"
"url": "https://github.com/glencoesoftware/github-action-ssh"
},
"main": "lib/index.js",
"scripts": {
Expand All @@ -24,14 +24,14 @@
"actions",
"ssh"
],
"author": "garygrossgarten",
"author": "glencoesoftware",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"node-ssh": "^13.0.0"
},
"devDependencies": {
"@types/node": "^16.11.6",
"@types/node": "^20.12.1",
"@types/ssh2": "^1.11.6",
"@types/ssh2-streams": "^0.1.9",
"@vercel/ncc": "^0.34.0",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Simple GitHub Action to run a command on a remote server using SSH. This is work

```yml
- name: ls -a via ssh
uses: garygrossgarten/github-action-ssh@release
uses: glencoesoftware/github-action-ssh@release
with:
command: ls -a
host: ${{ secrets.HOST }}
username: garygrossgarten
username: user
passphrase: ${{ secrets.PASSPHRASE }}
privateKey: ${{ secrets.PRIVATE_KEY}}
```
Expand Down