From b0a04f5fb32bc0e49151671acedd6aebf53b629a Mon Sep 17 00:00:00 2001 From: Hyro Date: Wed, 27 Jul 2022 08:18:45 +0200 Subject: [PATCH] chore: bump version --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 73fb18b..7d33582 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Latest stable ```yaml -- uses: xhyrom/setup-bun@v0.1.3 +- uses: xhyrom/setup-bun@v0.1.6 with: bun-version: latest github-token: ${{ secrets.GITHUB_TOKEN }} @@ -17,16 +17,16 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Specific version ```yaml -- uses: xhyrom/setup-bun@v0.1.3 +- uses: xhyrom/setup-bun@v0.1.6 with: - bun-version: "0.1.3" + bun-version: "0.1.5" github-token: ${{ secrets.GITHUB_TOKEN }} ``` ### Canary builds ```yaml -- uses: xhyrom/setup-bun@v0.1.3 +- uses: xhyrom/setup-bun@v0.1.6 with: bun-version: canary github-token: ${{ secrets.GITHUB_TOKEN }}