0.5.7
Dependabot for Deno projects (deprecated)
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Versions
- 0.18.2Latest
- 0.18.1
- 0.18.0
- 0.17.2
- 0.17.1
- 0.17.0
- 0.16.3
- 0.16.2
- 0.16.1
- 0.16.0
- 0.15.1
- 0.15.0
- 0.14.3
- 0.14.2
- 0.14.1
- 0.14.0
- 0.13.0
- 0.12.1
- 0.12.0
- 0.11.0
- 0.10.8
- 0.10.7
- 0.10.6
- 0.10.5
- 0.10.4
- 0.10.3
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.0
- 0.8.1
- 0.8.0
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.12
- 0.5.11
- 0.5.10
- 0.5.9
- 0.5.8
- 0.5.7
- 0.5.6
- 0.5.5
- 0.5.4
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.3
- 0.4.2
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.0
π€ denopendabot
denopendabot
keeps your Deno projects up-to-date.
Warning
Still under development. Many bugs might remain. Any breaking changes may be introduced on each Feature release.
π Features
Update Deno modules automatically
import { assert } from "https://deno.land/std@0.158.0/testing/asserts.ts";
π‘ deno.land/std@0.158.0/testing/mod.ts => 0.159.0
Denopendabot takes advantage of the core engine of udd, which is one of the most widely used module update libraries for Deno and supports many registry domains.
Update any SemVer
- uses: denoland/setup-deno@v1
with:
deno-version: v1.26.0 # @denopendabot denoland/deno
π‘ denoland/deno@v1.26.0 => v1.26.1
Denopendabot update any SemVer in the code specified by a comment of
@denopendabot {owner}/{repo}
.
Commits and pull requests
- Commits are created for each updated module/repository individually
- Each run of Denopendabot creates only one pull request
GitHub App
WIP
π‘ Usage
GitHub Action
You need a private access token with the workflow
scope to update workflow
definitions (./github/workflows/*.yml
).
In the examples below, we assume the token is added in repository secrets as
GH_TOKEN
.
Predefined workflow (recommended)
name: Denopendabot
on:
schedule:
- cron: "1 0 * * *" # modify to your convinient time
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- uses: hasundue/denopendabot@0.5.7 # @denopendabot hasundue/denopendabot
with:
user-token: ${{ secrets.GH_TOKEN }}
See action.yml for other options.
Manual configuration
name: Denopendabot
on:
schedule:
- cron: "1 0 * * *" # modify to your convinient time
jobs:
update:
name: Update
runs-on: ubuntu-latest
steps:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.26.1 # @denopendabot denoland/deno
- name: Run Denopendabot
run: >
deno run -q --allow-env --allow-net
https://deno.land/x/denopendabot@0.5.6/main.ts
${{ github.repository }}
--user-token ${{ secrets.GH_TOKEN }}
GitHub App
WIP