Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boywithkeyboard-archive/updater
Keep the dependencies of your Deno project up-to-date.
https://github.com/boywithkeyboard-archive/updater
action deno github github-action updater
Last synced: 12 days ago
JSON representation
Keep the dependencies of your Deno project up-to-date.
- Host: GitHub
- URL: https://github.com/boywithkeyboard-archive/updater
- Owner: boywithkeyboard-archive
- License: mit
- Created: 2023-08-08T01:08:09.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-05T17:24:40.000Z (7 months ago)
- Last Synced: 2024-06-28T13:50:16.979Z (5 months ago)
- Topics: action, deno, github, github-action, updater
- Language: TypeScript
- Homepage:
- Size: 747 KB
- Stars: 18
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
- License: license
Awesome Lists containing this project
README
boywithkeyboard's updater
![Demo](https://raw.githubusercontent.com/boywithkeyboard/updater/main/.github/showcase.png)
## Usage
The script is available as a
[GitHub Action](https://docs.github.com/en/actions/learn-github-actions) for
easy integration into your workflow.> [!IMPORTANT]\
> Please make sure that you have enabled the **Allow GitHub actions to create
> and approve pull requests** setting, as shown
> [here](https://github.com/boywithkeyboard/updater/blob/main/.github/workflow_permission.png).```yml
name: updateon:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:permissions:
contents: write
pull-requests: writejobs:
update:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v4- name: Run updater
uses: boywithkeyboard/updater@v0
# with:
# allowBreaking: true
```#### Options:
- `commitMessage` - Commit message and title for the pull request.
- `allowBreaking` - Allow breaking updates (major releases).
- `allowUnstable` - Allow unstable updates (prereleases).If you prefer to use this tool in another way, please read our
[alternative uses](https://github.com/boywithkeyboard/updater/blob/main/docs/alternative_uses.md).## Configuration File
The file must be named `updater.json` and be located either in the root
directory of your project or in the `.github` directory.```json
{
"$schema": "https://updater.mod.land/schema.json"
}
```- `include` (string or array of strings)
The files, directories and glob patterns to be included for updates.
- `exclude` (string or array of strings)
The files, directories and global patterns to exclude from updates. The
`exclude` option comes **after** `include` and overwrites the specified
patterns.- `allowBreaking` (boolean)
Allow breaking updates (major releases).
_`false` by default_
- `allowUnstable` (boolean)
Allow unstable updates (prereleases).
_`false` by default_
- `readOnly` (boolean)
Perform a dry run.
_`false` by default_
## Stages
- **⚠️ breaking**
_"This update might break your code."_
- **🚧 unstable**
_"This is a prerelease and might therefore come with unwanted issues."_
- **🤞 early**
_"This module doesn't strictly adhere to semver yet, so this version might
break your code."_## Advanced Usage
- **Pin a dependency**
To ignore a particular import, you can append `#pin` to the url.
```ts
import * as semver from 'https://deno.land/[email protected]/semver/mod.ts#pin'
```- **Specify a version range**
To override the default behavior, you can append a
[SemVer range](https://github.com/deaddeno/update/blob/dev/docs/semver_ranges.md)
to the url.```ts
import cheetah from 'https://deno.land/x/[email protected]/mod.ts#~v1.5'
```## Supported Registries
- [cdn.jsdelivr.net](https://jsdelivr.com)
- [deno.land](https://deno.land)
- [denopkg.com](https://denopkg.com)
- [esm.sh](https://esm.sh)
- [jsr](https://jsr.io)
`jsr:` imports are treated slightly different. If you want to pin a
dependency, you must specify an **exact version**, e.g. `jsr:[email protected]`,
and if you want to make a dependency updatable, you must add a preceding `^`,
e.g. `jsr:example@^1.0.0`.- [npm](https://npmjs.com)
`npm:` imports are treated the same as `jsr:` imports.
- [raw.githubusercontent.com](https://raw.githubusercontent.com)