Dependencies Update #28
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: Dependencies Update | |
on: | |
schedule: | |
- cron: "59 5 * * *" | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the head commit of the branch | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Use pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Use node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Installing dependencies | |
run: pnpm i | |
- name: Updating dependencies | |
run: pnpm exec npm-check-updates -u --target minor | |
- name: Dependencies audit | |
run: pnpm audit --fix | |
- name: Installing dependencies | |
run: pnpm i | |
- name: Run command | |
uses: ctux/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
branch_main_name: "'develop'" | |
branch_pr_name: "'dependencies-update'" | |
commit_message: "'chore(dependencies): automatic updates'" |