diff --git a/.github/workflows/imperative.yml b/.github/workflows/imperative.yml index aa42651a7..063172d80 100644 --- a/.github/workflows/imperative.yml +++ b/.github/workflows/imperative.yml @@ -38,6 +38,11 @@ jobs: node-version: ${{ matrix.node-version }} check-latest: true + - name: Downgrade Python + uses: actions/setup-python@v4 + with: + python-version: '3.11.5' + - name: Disable Lint Annotations run: | echo "::remove-matcher owner=eslint-compact::" @@ -98,6 +103,11 @@ jobs: uses: actions/setup-node@v3 with: node-version: 'lts/*' + + - name: Downgrade Python + uses: actions/setup-python@v4 + with: + python-version: '3.11.5' - name: Install Dependencies run: npm ci diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 3b292cc2c..aeac3e57e 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -21,7 +21,12 @@ jobs: - name: Use Node.js LTS uses: actions/setup-node@v3 with: - node-version: lts/* + node-version: 18.x + + - name: Downgrade Python + uses: actions/setup-python@v4 + with: + python-version: '3.11.5' - name: Install Node Package Dependencies run: npm ci diff --git a/README.md b/README.md index b1e171705..a0297265d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![codecov](https://codecov.io/gh/zowe/imperative/branch/master/graph/badge.svg)](https://codecov.io/gh/zowe/imperative) +**This package has moved to the [Zowe CLI Monorepo](https://github.com/zowe/zowe-cli/)** + Imperative CLI Framework is a command processing system that lets you quickly build customized command-line interfaces. Focus on adding functionality for your users rather than creating CLI infrastructure. We provide you with all the tools to get started building your own CLI plug-ins. ## Software Requirements