This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
Update Dependencies #283
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * 0 | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 # v1.1.0 | |
with: | |
deno-version: v1.33.3 | |
- name: Update dependencies | |
run: deno task udd | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v4.1.1 | |
with: | |
commit-message: "update dependencies" | |
title: "chore: update dependencies" | |
body: > | |
Dependencies updated by [udd](https://github.com/hayd/deno-udd). | |
branch: deno-dependency-updates | |
author: GitHub <noreply@github.com> | |
delete-branch: true |