Skip to content

update dependencies #25

update dependencies

update dependencies #25

Workflow file for this run

name: update dependencies
on:
schedule:
- cron: '0 0 1 * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
ref: development
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: update
run: yarn install && yarn upgrade
- name: Create Pull Request
uses: peter-evans/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
base: development
branch: dependency-updates
delete-branch: true
title: Dependency Updates
commit-message: Dependency updates