Skip to content

Commit

Permalink
Merge pull request #1 from knabar/maint-update-node
Browse files Browse the repository at this point in the history
Update node
  • Loading branch information
knabar authored Jul 4, 2024
2 parents 915e492 + b7c4000 commit e5ee2fc
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 29 deletions.
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

0 comments on commit e5ee2fc

Please sign in to comment.