diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f3898fc..0aaa032 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,7 +175,7 @@ jobs: /cubbyhole/test zip | NAMED_CUBBYSECRET ; - name: Verify Vault Action Outputs - run: npm run test:e2e + run: npm run test:integration:e2e env: OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }} @@ -268,7 +268,7 @@ jobs: clientKey: ${{ secrets.VAULT_CLIENT_KEY }} - name: Verify Vault Action Outputs - run: npm run test:e2e-tls + run: npm run test:integration:e2e-tls env: OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }} diff --git a/package-lock.json b/package-lock.json index a6560a8..682abf2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,7 @@ "license": "MIT", "dependencies": { "got": "^11.8.5", - "jsonata": "^2.0.2", + "jsonata": "^2.0.3", "jsrsasign": "^10.6.1" }, "devDependencies": { @@ -3120,9 +3120,9 @@ } }, "node_modules/jsonata": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsonata/-/jsonata-2.0.2.tgz", - "integrity": "sha512-CpwbpFNjuuukU+tIR6Qw+fhwQQ5iZGbB/Md8CVaU7/b/SI1RlQQVgf4rIEjoiG9/jDB7C45nKKwHXWKHQxvb7w==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/jsonata/-/jsonata-2.0.3.tgz", + "integrity": "sha512-Up2H81MUtjqI/dWwWX7p4+bUMfMrQJVMN/jW6clFMTiYP528fBOBNtRu944QhKTs3+IsVWbgMeUTny5fw2VMUA==", "engines": { "node": ">= 8" } @@ -6712,9 +6712,9 @@ "dev": true }, "jsonata": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/jsonata/-/jsonata-2.0.2.tgz", - "integrity": "sha512-CpwbpFNjuuukU+tIR6Qw+fhwQQ5iZGbB/Md8CVaU7/b/SI1RlQQVgf4rIEjoiG9/jDB7C45nKKwHXWKHQxvb7w==" + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/jsonata/-/jsonata-2.0.3.tgz", + "integrity": "sha512-Up2H81MUtjqI/dWwWX7p4+bUMfMrQJVMN/jW6clFMTiYP528fBOBNtRu944QhKTs3+IsVWbgMeUTny5fw2VMUA==" }, "jsrsasign": { "version": "10.6.1", diff --git a/package.json b/package.json index df8e0a7..a2a7c9e 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "test": "jest", "test:integration:basic": "jest -c integrationTests/basic/jest.config.js", "test:integration:enterprise": "jest -c integrationTests/enterprise/jest.config.js", - "test:e2e": "jest -c integrationTests/e2e/jest.config.js", - "test:e2e-tls": "jest -c integrationTests/e2e-tls/jest.config.js" + "test:integration:e2e": "jest -c integrationTests/e2e/jest.config.js", + "test:integration:e2e-tls": "jest -c integrationTests/e2e-tls/jest.config.js" }, "files": [ "src/**/*", @@ -35,7 +35,7 @@ "homepage": "https://github.com/hashicorp/vault-action#readme", "dependencies": { "got": "^11.8.5", - "jsonata": "^2.0.2", + "jsonata": "^2.0.3", "jsrsasign": "^10.6.1" }, "peerDependencies": {