From 16e71d0500c10c3ff928c3fac8cb6c429bfb7e9d Mon Sep 17 00:00:00 2001 From: Philipp Eckel Date: Wed, 24 May 2023 09:16:20 +0200 Subject: [PATCH] fix: #2 update default version and fix reference --- .github/workflows/test.yml | 2 +- README.md | 8 +++----- action.yml | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 68742c2..44e2713 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] teller: - ["1.1.0"] + ["1.5.6"] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 17c0fdb..74c8c13 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,10 @@ Set up your GitHub Actions workflow with a specific version of [Teller](https:// Use the following to set up a `teller` binary that's available in your workflow steps: ```yaml - - name: Setup Teller - uses: spectralops/setup-teller@v2 +- name: Setup Teller + uses: spectralops/setup-teller-action@v2 ``` - ## :clipboard: Workflow ```yaml @@ -32,10 +31,9 @@ jobs: - name: Clone repo uses: actions/checkout@master - # set up teller - name: Setup Teller - uses: spectralops/setup-teller@v2 + uses: spectralops/setup-teller-action@v2 - name: Run a Teller task (show, scan, run, etc.) run: teller run [args] diff --git a/action.yml b/action.yml index 135d0af..4652f92 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ branding: inputs: teller-version: description: The Teller version to install. - default: "1.1.0" + default: "1.5.6" outputs: teller-version: description: "The Teller version that was installed."