Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update dependencies #230

Merged
merged 2 commits into from
Oct 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
name: Update
runs-on: ubuntu-latest
steps:
- uses: hasundue/denopendabot@0.6.0 # @denopendabot hasundue/denopendabot
- uses: hasundue/denopendabot@0.6.1 # @denopendabot hasundue/denopendabot
with:
token: ${{ secrets.GITHUB_TOKEN }}
user-token: ${{ secrets.GH_TOKEN }}
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Run Denopendabot
run: >
deno run -q --allow-env --allow-net
https://deno.land/x/denopendabot@0.6.0/main.ts
https://deno.land/x/denopendabot@0.6.1/main.ts
${{ github.repository }}
--token ${{ secrets.GITHUB_TOKEN }}
--user-token ${{ secrets.GH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
- name: Run Denopendabot
run: >
deno run -q --allow-env --allow-net
https://deno.land/x/denopendabot@0.6.0/main.ts
https://deno.land/x/denopendabot@0.6.1/main.ts
${{ inputs.repository }}
--base ${{ inputs.base-branch }}
--branch ${{ inputs.working-branch }}
Expand Down
2 changes: 1 addition & 1 deletion integration/mod_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Client } from "../lib/github.ts";

const repo = "hasundue/denopendabot";
const base = "test";
const initial = "0.6.0"; // @denopendabot hasundue/denopendabot
const initial = "0.6.1"; // @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
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Deno.test({

const update = new RepoUpdate("mod.ts", {
name: "hasundue/denopendabot",
initial: "0.6.0", // @denopendabot hasundue/denopendabot
initial: "0.6.1", // @denopendabot hasundue/denopendabot
target: "1.0.0",
});
const message = "[TEST] " + update.message();
Expand Down
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
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.0"; // @denopendabot hasundue/denopendabot
export const VERSION = "0.6.1"; // @denopendabot hasundue/denopendabot

interface Options {
base?: string;
Expand Down