From 37c5fa5bfdb41fa17d012495258359832b3b1ecd Mon Sep 17 00:00:00 2001 From: Hyro Date: Thu, 12 Jan 2023 09:00:20 +0100 Subject: [PATCH] docs: change actions owner --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cd2f4fb..7830822 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.8 +- uses: oven-sh/setup-bun@v0.1.8 with: bun-version: latest github-token: ${{ secrets.GITHUB_TOKEN }} @@ -17,7 +17,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Specific version ```yaml -- uses: xhyrom/setup-bun@v0.1.8 +- uses: oven-sh/setup-bun@v0.1.8 with: bun-version: "0.1.5" github-token: ${{ secrets.GITHUB_TOKEN }} @@ -26,7 +26,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Canary builds ```yaml -- uses: xhyrom/setup-bun@v0.1.8 +- uses: oven-sh/setup-bun@v0.1.8 with: bun-version: canary github-token: ${{ secrets.GITHUB_TOKEN }} @@ -35,7 +35,7 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Custom repository ```yaml -- uses: xhyrom/setup-bun@v0.1.8 +- uses: oven-sh/setup-bun@v0.1.8 with: repository: https://github.com/oven-sh/misc-test-builds github-token: ${{ secrets.GITHUB_TOKEN }} @@ -44,8 +44,8 @@ Set up your GitHub Actions workflow with a specific version of Bun. ### Custom download url ```yaml -- uses: xhyrom/setup-bun@v0.1.8 +- uses: oven-sh/setup-bun@v0.1.8 with: custom-download-url: https://api.github.com/repos/oven-sh/bun/actions/artifacts/311939881/zip # must be github api github-token: ${{ secrets.GITHUB_TOKEN }} -``` \ No newline at end of file +```