From baabea1298937ef6dafd9061f4fb8cad46796c12 Mon Sep 17 00:00:00 2001 From: Danielle Adams Date: Thu, 7 Mar 2024 16:49:18 -0700 Subject: [PATCH] ARCH-2011 - Update to node20 +semver:minor --- README.md | 4 ++-- action.yml | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 61130b0..d0aa9b3 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ This action will close a PagerDuty Maintenance Window using a provided maintenan - name: Close a window # You may also reference just the major or major.minor version - uses: im-open/close-pagerduty-maintenance-window@v1.1.5 + uses: im-open/close-pagerduty-maintenance-window@v1.2.0 with: pagerduty-api-key: ${{secrets.PAGERDUTY_API_KEY}} maintenance-window-id: ${{ steps.open-window.outputs.maintenance-window-id }} @@ -101,7 +101,7 @@ This project has adopted the [im-open's Code of Conduct](https://github.com/im-o ## License -Copyright © 2023, Extend Health, LLC. Code released under the [MIT license](LICENSE). +Copyright © 2024, Extend Health, LLC. Code released under the [MIT license](LICENSE). [Incrementing the Version]: #incrementing-the-version diff --git a/action.yml b/action.yml index f42ccb7..bd8fa1d 100644 --- a/action.yml +++ b/action.yml @@ -1,18 +1,18 @@ -name: Close a PagerDuty Maintenance Window -description: Closes the specified PagerDuty maintenance window. - -inputs: - pagerduty-api-key: - description: 'The PagerDuty API Key that allows access to your services' - required: true - maintenance-window-id: - description: 'The ID of the maintenance window to be closed.' - required: true - minutes: - description: 'The number of minutes to close the window in. Defaults to 3. Must be greater than 0.' - required: true - default: '3' - -runs: - using: 'node16' - main: 'dist/index.js' +name: Close a PagerDuty Maintenance Window +description: Closes the specified PagerDuty maintenance window. + +inputs: + pagerduty-api-key: + description: 'The PagerDuty API Key that allows access to your services' + required: true + maintenance-window-id: + description: 'The ID of the maintenance window to be closed.' + required: true + minutes: + description: 'The number of minutes to close the window in. Defaults to 3. Must be greater than 0.' + required: true + default: '3' + +runs: + using: 'node20' + main: 'dist/index.js'