diff --git a/README.md b/README.md index cb2c0946..db4b3f68 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ jobs: name: Update runs-on: ubuntu-latest steps: - - uses: hasundue/denopendabot@0.6.1 # @denopendabot hasundue/denopendabot + - uses: hasundue/denopendabot@0.6.2 # @denopendabot hasundue/denopendabot with: user-token: ${{ secrets.GH_TOKEN }} ``` @@ -111,7 +111,7 @@ jobs: - name: Run Denopendabot run: > deno run -q --allow-env --allow-net - https://deno.land/x/denopendabot@0.6.1/main.ts + https://deno.land/x/denopendabot@0.6.2/main.ts ${{ github.repository }} --token ${{ secrets.GITHUB_TOKEN }} --user-token ${{ secrets.GH_TOKEN }} diff --git a/action.yml b/action.yml index 33830542..937efe4f 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,7 @@ runs: - name: Run Denopendabot run: > deno run -q --allow-env --allow-net - https://deno.land/x/denopendabot@0.6.1/main.ts + https://deno.land/x/denopendabot@0.6.2/main.ts ${{ inputs.repository }} --base ${{ inputs.base-branch }} --branch ${{ inputs.working-branch }} diff --git a/integration/mod_test.ts b/integration/mod_test.ts index 801b497f..b465eef2 100644 --- a/integration/mod_test.ts +++ b/integration/mod_test.ts @@ -8,7 +8,7 @@ import { Client } from "../lib/github.ts"; const repo = "hasundue/denopendabot"; const base = "test"; -const initial = "0.6.1"; // @denopendabot hasundue/denopendabot +const initial = "0.6.2"; // @denopendabot hasundue/denopendabot const target = "1.0.0"; const github = new Client(env.GITHUB_TOKEN); diff --git a/lib/github_test.ts b/lib/github_test.ts index b4aa98e9..54f8ea99 100644 --- a/lib/github_test.ts +++ b/lib/github_test.ts @@ -47,7 +47,7 @@ Deno.test({ const update = new RepoUpdate("mod.ts", { name: "hasundue/denopendabot", - initial: "0.6.1", // @denopendabot hasundue/denopendabot + initial: "0.6.2", // @denopendabot hasundue/denopendabot target: "1.0.0", }); const message = "[TEST] " + update.message(); diff --git a/mod.ts b/mod.ts index 692673cd..05d5d677 100644 --- a/mod.ts +++ b/mod.ts @@ -7,7 +7,7 @@ import { Client } from "./lib/github.ts"; import { getModuleUpdateSpecs, ModuleUpdate } from "./lib/module.ts"; import { getRepoUpdateSpecs, RepoUpdate } from "./lib/repo.ts"; -export const VERSION = "0.6.1"; // @denopendabot hasundue/denopendabot +export const VERSION = "0.6.2"; // @denopendabot hasundue/denopendabot interface Options { base?: string;