Skip to content

Commit

Permalink
Merge pull request #239 from hasundue/denopendabot
Browse files Browse the repository at this point in the history
build(deps): update dependencies
  • Loading branch information
hasundue committed Oct 16, 2022
2 parents 536a6c9 + 98327d9 commit 2ea9f3a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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 }}
```
Expand All @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion integration/mod_test.ts
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion lib/github_test.ts
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Expand Up @@ -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;
Expand Down

0 comments on commit 2ea9f3a

Please sign in to comment.