diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01105c1..163fee9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -124,7 +124,7 @@ jobs: with: url: http://localhost:${{ job.services.vault.ports[8200] }} token: testtoken - engine-name: my-secret + path: my-secret kv-version: 1 secrets: | test altSecret ; diff --git a/integrationTests/basic/integration.test.js b/integrationTests/basic/integration.test.js index 04b08d8..22b52d6 100644 --- a/integrationTests/basic/integration.test.js +++ b/integrationTests/basic/integration.test.js @@ -103,7 +103,7 @@ describe('integration', () => { function mockEngineName(name) { when(core.getInput) - .calledWith('engine-name') + .calledWith('path') .mockReturnValueOnce(name); } diff --git a/integrationTests/enterprise/enterprise.test.js b/integrationTests/enterprise/enterprise.test.js index 280f811..6c137bb 100644 --- a/integrationTests/enterprise/enterprise.test.js +++ b/integrationTests/enterprise/enterprise.test.js @@ -296,7 +296,7 @@ function mockInput(secrets) { function mockEngineName(name) { when(core.getInput) - .calledWith('engine-name') + .calledWith('path') .mockReturnValueOnce(name); }