Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Use Node.js 12.x
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: "18.x"

- run: npm ci
- run: npm test
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12.22.1
v18
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ inputs:
required: true

actionToDo:
description: "'add'/'remove' the Github's IP"
required: true
description: "'add'/'remove' the Github's IP"
required: true

protocol:
description: "Protocol used by the service to update"
Expand All @@ -34,5 +34,5 @@ inputs:
default: false

runs:
using: "node12"
using: "node18"
main: "dist/index.js"
Loading