From 478a771bf999907426686b67eb53a4ca5713f077 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Mon, 4 Mar 2024 20:28:40 +0100 Subject: [PATCH] update to v1.15.6 (#17) --- .github/workflows/test-action.yml | 2 +- README.md | 4 ++-- action.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-action.yml b/.github/workflows/test-action.yml index 66539e3..7b15645 100644 --- a/.github/workflows/test-action.yml +++ b/.github/workflows/test-action.yml @@ -42,7 +42,7 @@ jobs: - name: Install Vault uses: ./ with: - vault-release: '1.12.0' + vault-release: '1.15.4' - name: Check install! run: vault version - name: Check root directory diff --git a/README.md b/README.md index 1f0fbc9..14ecd35 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Add the following entry to your Github workflow YAML file: ```yaml uses: cpanato/vault-installer@main with: - vault-release: '1.15.4' # optional + vault-release: '1.15.6' # optional ``` Example using a pinned version: @@ -28,7 +28,7 @@ jobs: - name: Install Vault uses: cpanato/vault-installer@main with: - vault-release: '1.15.4' + vault-release: '1.15.6' - name: Check install! run: vault version ``` diff --git a/action.yml b/action.yml index b82b09e..47d0015 100644 --- a/action.yml +++ b/action.yml @@ -10,7 +10,7 @@ inputs: vault-release: description: 'Hashicorp Vault release version to be installed' required: false - default: '1.15.4' + default: '1.15.6' install-dir: description: 'Where to install the Hashicorp Vault binary' required: false