From ac6d910a90d64f78ef773afe83887a35c95245c6 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Tue, 9 Apr 2024 09:50:22 +0200 Subject: [PATCH] Update action.yml (#20) * Update action.yml * Update README.md --- README.md | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3500cb5..83c833a 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.16.0' # optional + vault-release: '1.16.1' # optional ``` Example using a pinned version: @@ -28,7 +28,7 @@ jobs: - name: Install Vault uses: cpanato/vault-installer@main with: - vault-release: '1.16.0' + vault-release: '1.16.1' - name: Check install! run: vault version ``` diff --git a/action.yml b/action.yml index 798f3bc..e8c2a53 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.16.0' + default: '1.16.1' install-dir: description: 'Where to install the Hashicorp Vault binary' required: false