From 42f548c1756392f89ce88406a790da198fd02c15 Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Fri, 15 Mar 2024 09:00:53 +0100 Subject: [PATCH 1/2] Update action.yaml --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index c147f2c..0b42650 100644 --- a/action.yaml +++ b/action.yaml @@ -9,7 +9,7 @@ inputs: gptscript-release: description: 'gptscript release version to be installed' required: false - default: '0.1.5' + default: '0.2.1' install-dir: description: 'Where to install the gptscript binary' required: false From aca13937fcff4b459b694f1425e9412c25a414ee Mon Sep 17 00:00:00 2001 From: Carlos Tadeu Panato Junior Date: Fri, 15 Mar 2024 09:01:17 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fd6ddcb..6a9c119 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Add the following entry to your Github workflow YAML file: ```yaml uses: cpanato/gptscript-installer@main with: - gptscript-release: '0.1.5' # optional + gptscript-release: '0.2.1' # optional ``` Example using a pinned version: @@ -28,7 +28,7 @@ jobs: - name: Install gptscript uses: cpanato/gptscript-installer@main with: - gptscript-release: '0.1.5' + gptscript-release: '0.2.1' - name: Check install! run: gptscript --version ```