From 158efd19b6af5ff000289d6c7c507ada3c7b3b9b Mon Sep 17 00:00:00 2001 From: Erik Sipsma Date: Thu, 30 May 2024 16:20:06 -0700 Subject: [PATCH] chore: bump default dagger version to v0.11.6 Signed-off-by: Erik Sipsma --- README.md | 24 ++++++++++++------------ action.yml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 5aded43..3d318b0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ - name: Hello uses: dagger/dagger-for-github@v5 with: - verb: call + verb: call module: github.com/shykes/daggerverse/hello args: hello --greeting Hola --name Jeremy cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} @@ -24,7 +24,7 @@ verb: run args: node build.js cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} - version: "0.11.5" + version: "0.11.6" ``` ### Staying in sync with the `latest` version @@ -33,13 +33,13 @@ By setting the version to `latest`, this action will install the latest version ### All `with:` input parameter options -| Key | Description | Required | Default | -| --------------- | ------------------------------------------------------------- | ---------- | --------------------- | -| `version` | Dagger Version | false | '0.11.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 | '.' | -| `cloud-token` | Dagger Cloud Token | false | '' | -| `module` | Dagger module to call. Local or Git | false | '' | -| `args` | Arguments to pass to CLI | false | '' | -| `engine-stop` | Whether to stop the Dagger Engine after this run | false | 'true' | +| Key | Description | Required | Default | +| -------------- | ----------------------------------------------------------- | -------- | ------------------ | +| `version` | Dagger Version | false | '0.11.6' | +| `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 | '.' | +| `cloud-token` | Dagger Cloud Token | false | '' | +| `module` | Dagger module to call. Local or Git | false | '' | +| `args` | Arguments to pass to CLI | false | '' | +| `engine-stop` | Whether to stop the Dagger Engine after this run | false | 'true' | diff --git a/action.yml b/action.yml index f959592..0750d4d 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ inputs: version: description: "Dagger Version" required: false - default: "0.11.5" + default: "0.11.6" dagger-flags: description: "Dagger CLI Flags" required: false