Skip to content

Update Dependencies #98

Update Dependencies

Update Dependencies #98

Workflow file for this run

name: Update Dependencies
on:
schedule:
- cron: "0 4 * * 6"
workflow_dispatch:
jobs:
update-dependencies:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_ACCESS_TOKEN }}
- name: Git Config
run: |
git config user.name "svc-pipeline"
git config user.email "svc_pipeline@qlik.com"
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
run: pnpm i
- name: Update Dependencies
run: pnpm update --latest --recursive
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.GH_ACCESS_TOKEN }}
commit-message: "chore: update npm dependencies"
committer: svc-pipeline <svc_pipeline@qlik.com>
author: svc-pipeline <svc_pipeline@qlik.com>
branch: chore/update-dependencies
delete-branch: true
title: "chore: update npm dependencies"