From 57adb7d0b1e8d8d464b7044f8438cf34cbe0181c Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Fri, 10 Nov 2023 12:44:17 -0500 Subject: [PATCH 1/4] Update readme to point to CLI monorepo Signed-off-by: Andrew W. Harn --- README.md | 2 ++ 1 file changed, 2 insertions(+) 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 From 3c260aa2054efdcd5e39be1c686ab7cccac9f1a3 Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Mon, 13 Nov 2023 16:12:20 +0000 Subject: [PATCH 2/4] Update workflow to downgrade python Signed-off-by: Andrew W. Harn --- .github/workflows/imperative.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 From f9f0c521d2b723ca876afec26a253b125cb51816 Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Mon, 13 Nov 2023 16:18:05 +0000 Subject: [PATCH 3/4] Last workflow update Signed-off-by: Andrew W. Harn --- .github/workflows/linter.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 3b292cc2c..e74ec617b 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -22,6 +22,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 Node Package Dependencies run: npm ci From de69a37b9bed685232af7a156cdd7717ef81af6f Mon Sep 17 00:00:00 2001 From: "Andrew W. Harn" Date: Mon, 13 Nov 2023 16:32:32 +0000 Subject: [PATCH 4/4] Use Node 18 Signed-off-by: Andrew W. Harn --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index e74ec617b..aeac3e57e 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -21,7 +21,7 @@ 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