From 4078003c9875ea4d86a6a21c3efff18f8c810579 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 1 Dec 2023 17:20:59 +0100 Subject: [PATCH] Add path dependency. --- actions/dl_deps_archive/package-lock.json | 33 ++++++++++++++++++++++- actions/dl_deps_archive/package.json | 3 ++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/actions/dl_deps_archive/package-lock.json b/actions/dl_deps_archive/package-lock.json index 1218a34..a1a8152 100644 --- a/actions/dl_deps_archive/package-lock.json +++ b/actions/dl_deps_archive/package-lock.json @@ -10,7 +10,8 @@ "license": "ISC", "dependencies": { "@actions/core": "^1.10.1", - "@actions/tool-cache": "^2.0.1" + "@actions/tool-cache": "^2.0.1", + "path": "^0.12.7" } }, "node_modules/@actions/core": { @@ -74,6 +75,28 @@ "node": ">=14" } }, + "node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", @@ -101,6 +124,14 @@ "node": ">=14.0" } }, + "node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, "node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", diff --git a/actions/dl_deps_archive/package.json b/actions/dl_deps_archive/package.json index 7fce4cf..3edda02 100644 --- a/actions/dl_deps_archive/package.json +++ b/actions/dl_deps_archive/package.json @@ -11,6 +11,7 @@ "license": "ISC", "dependencies": { "@actions/core": "^1.10.1", - "@actions/tool-cache": "^2.0.1" + "@actions/tool-cache": "^2.0.1", + "path": "^0.12.7" } }