Deprecate X-Ray Node SDK Version #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deprecate X-Ray Node SDK Version | |
on: | |
workflow_dispatch: | |
jobs: | |
deprecate_xray_node_sdk_version: | |
name: Deprecate X-Ray Node SDK version in NPM registry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: npm install -g [email protected] | |
- name: Deprecate Version 3.7.0 | |
run: | | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
npm deprecate [email protected] "3.7.0 is deprecated due to known issue in Lambda" | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |