mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
group php dependency updates which speeds up manual testing
Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
parent
754f6f1511
commit
be19428e81
1 changed files with 39 additions and 0 deletions
39
.github/workflows/dependency-updates.yml
vendored
Normal file
39
.github/workflows/dependency-updates.yml
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
name: dependency-updates
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: '00 12 * * *'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dependency_updates:
|
||||||
|
name: Run dependency update script
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: nanasess/setup-php@master
|
||||||
|
with:
|
||||||
|
php-version: '8.0'
|
||||||
|
- name: Run dependency update script
|
||||||
|
run: |
|
||||||
|
curl -sS https://getcomposer.org/installer | php
|
||||||
|
mv composer.phar /usr/local/bin/composer
|
||||||
|
chmod +x /usr/local/bin/composer
|
||||||
|
cd ./php
|
||||||
|
composer update
|
||||||
|
ALL_LINES="$(composer outdated | grep -v "psr/container")"
|
||||||
|
while [ -n "$ALL_LINES" ]; do
|
||||||
|
CURRENT_LINE="$(echo "$ALL_LINES" | head -1)"
|
||||||
|
composer require "$(echo "$CURRENT_LINE" | awk '{print $1}')" "^$(echo "$CURRENT_LINE" | awk '{print $4}')"
|
||||||
|
ALL_LINES="$(echo "$ALL_LINES" | sed '1d')"
|
||||||
|
done
|
||||||
|
echo "outdated dependencies:
|
||||||
|
$(composer outdated)"
|
||||||
|
- name: Create Pull Request
|
||||||
|
uses: peter-evans/create-pull-request@v3
|
||||||
|
with:
|
||||||
|
commit-message: dependency updates
|
||||||
|
signoff: true
|
||||||
|
title: Dependency updates
|
||||||
|
body: Automated dependency updates since dependabot does not support grouped updates
|
||||||
|
labels: dependencies, enhancement
|
||||||
|
milestone: next
|
||||||
Loading…
Add table
Add a link
Reference in a new issue