Big updates

This commit is contained in:
0d0 2025-02-12 18:35:26 +01:00
parent ea0e18f9d7
commit 8223487c0b
8 changed files with 70 additions and 77 deletions

View file

@ -1,9 +1,9 @@
name: Update Minor Dependencies and Build Container
name: Bump deps (only minor versions)
on:
schedule:
- cron: '0 0 * * *' # Runs every night at midnight (UTC)
workflow_dispatch: # Allows manual triggering
- cron: '0 0 * * *' # Runs every night at midnight (UTC)
workflow_dispatch:
jobs:
update-dependencies:
@ -13,24 +13,17 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v3
with:
token: ${{ secrets.FORGEJO_TOKEN }} # Make sure to add this token in your repo secrets
token: ${{ secrets.FORGEJO_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Adjust as needed
node-version: '20'
- name: Configure npm version
run: npm install
- name: Check and Update Minor Dependencies
run: npx npm-check-updates --target minor -u
- name: Install Updated Dependencies
run: npm install
- name: Commit and Push Changes
- name: Update deps, install them (to change package-lock.json) and commit
run: |
npx npm-check-updates --target minor -u
npm install
git config --global user.name "forgejo-bot"
git config --global user.email "bot@pweapon.org"
git add package.json || exit 0