Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

Bump

Bump #18

Workflow file for this run

name: Bump
env:
DENO_VERSION: 2.x
permissions:
contents: write
on: workflow_dispatch
jobs:
build:
name: version bump
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: denoland/setup-deno@v2
with:
deno-version: ${{ env.DENO_VERSION }}
cache: true
- run: |
git fetch --unshallow origin
deno run -A jsr:@deno/bump-workspaces@^0.1/cli
env:
GITHUB_TOKEN: ${{ secrets.PULL_REQUEST_TOKEN }}
GIT_USER_NAME: ${{ github.actor }}
GIT_USER_EMAIL: ${{ github.actor}}@users.noreply.github.com