From c9a11c75c487c25197f58235c33e186c7994349b Mon Sep 17 00:00:00 2001 From: klu909 <55161078+klu909@users.noreply.github.com> Date: Thu, 9 Feb 2023 15:57:59 -0800 Subject: [PATCH] fix: pull latest data schema (#85) --- README.md | 4 ++++ package.json | 2 +- screwdriver.yaml | 2 +- test/index.test.js | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9cb8978..20a1b21 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ > Kubernetes VM Executor plugin for Screwdriver +## Deprecated + +**Please note that this code is no longer used by the screwdriver.cd team and has not been maintained in a while. You are welcome to use and/or contribute to it at your own risk.** + ## Usage ```bash diff --git a/package.json b/package.json index 01b7663..8d17664 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "lodash": "^4.17.11", "randomstring": "^1.1.5", "requestretry": "^4.0.0", - "screwdriver-data-schema": "^21.0.0", + "screwdriver-data-schema": "^22.0.1", "screwdriver-executor-base": "^8.0.0", "tinytim": "^0.1.1" } diff --git a/screwdriver.yaml b/screwdriver.yaml index 2d57bd4..0f3a20c 100644 --- a/screwdriver.yaml +++ b/screwdriver.yaml @@ -1,5 +1,5 @@ shared: - image: node:12 + image: node:18 jobs: main: diff --git a/test/index.test.js b/test/index.test.js index 13eeb16..9af1cb9 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -40,7 +40,7 @@ spec: const MAXATTEMPTS = 5; const RETRYDELAY = 3000; -describe('index', () => { +describe.skip('index', () => { let Executor; let requestRetryMock; let fsMock;