Skip to content

Update Versions

Update Versions #904

Workflow file for this run

name: Update Versions
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
jobs:
Update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Run script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: deno task run
- name: Update repo
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update to latest versions
commit_user_name: actions-user
commit_user_email: [email protected]
commit_author: actions-user <[email protected]>