From 145f04c8b5d7a638e3f0fd68fa6329bb2eebc385 Mon Sep 17 00:00:00 2001 From: Justin Chadwell Date: Thu, 15 Aug 2024 17:15:11 +0100 Subject: [PATCH] chore: bump default dagger version to v0.12.5 (#142) Signed-off-by: Justin Chadwell --- README.md | 4 ++-- action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c472c24..1b99eb9 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ verb: run args: node build.js cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} - version: "0.12.4" + version: "0.12.5" ``` ### Staying in sync with the `latest` version @@ -35,7 +35,7 @@ By setting the version to `latest`, this action will install the latest version | Key | Description | Required | Default | | -------------- | ----------------------------------------------------------- | -------- | ------------------ | -| `version` | Dagger Version | false | '0.12.4' | +| `version` | Dagger Version | false | '0.12.5' | | `dagger-flags` | Dagger CLI Flags | false | '--progress plain' | | `verb` | CLI verb (call, run, download, up, functions, shell, query) | false | 'call' | | `workdir` | The working directory in which to run the Dagger CLI | false | '.' | diff --git a/action.yml b/action.yml index 6049918..4cc8e84 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: version: description: "Dagger Version" required: false - default: "0.12.4" + default: "0.12.5" dagger-flags: description: "Dagger CLI Flags" required: false