Skip to content

Commit

Permalink
adds deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jun 16, 2024
1 parent e7ef3de commit 647bf50
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/staco-app-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Updates npm dependencies

on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:

jobs:
update-dependencies:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Run dependency update script
run: make deps-update

- name: Create pull request
uses: peter-evans/create-pull-request@v3
with:
commit-message: Update sbt dependencies
branch: update-npm-dependencies
title: 'Update npm dependencies'
body: |
This pull request updates the following dependencies:
- Current NPM dependency updates
labels: dependencies
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,5 @@ hotkey-fix:
sudo apt install --reinstall xserver-xorg-input-all
sudo dpkg-reconfigure keyboard-configuration
sudo apt-get install kwin-addons
deps-update: update

0 comments on commit 647bf50

Please sign in to comment.