From a40f8d3398aad497d3db17aed9a36aca16297052 Mon Sep 17 00:00:00 2001 From: Shaan Majid <70789625+shaanmajid@users.noreply.github.com> Date: Wed, 1 Apr 2026 10:54:13 +0000 Subject: [PATCH] revert: "chore(ci): add deprecate action; (#10591)" (#10617) This reverts commit e2bed7f84d86e87d0641bc5910e96607092d9934. --- .github/workflows/deprecate.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/deprecate.yml diff --git a/.github/workflows/deprecate.yml b/.github/workflows/deprecate.yml deleted file mode 100644 index 0ea296f8..00000000 --- a/.github/workflows/deprecate.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Deprecate compromised axios version - -on: - workflow_dispatch: - inputs: - version: - description: "Version of axios to deprecate (e.g. 1.14.1)" - required: true - default: "1.14.1" - -jobs: - deprecate: - runs-on: ubuntu-latest - - permissions: - contents: read - - steps: - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - registry-url: https://registry.npmjs.org/ - - - name: Deprecate selected version - run: | - echo "Deprecating axios@${{ github.event.inputs.version }}" - npm deprecate axios@${{ github.event.inputs.version }} "🚨 SECURITY: compromised dependency (plain-crypto-js). DO NOT USE. Downgrade to 1.13.6" - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}