Skip to content

Commit

Permalink
chore(deps): update all major dependencies (major) (#152)
Browse files Browse the repository at this point in the history
* chore(deps): update all major dependencies

* set config::platform::php to 8.2 so the unittest can actually install dependencies

* disables major update for the vaas dependency (for now)

---------

Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
ata-no-one and Renovate Bot authored Nov 28, 2024
1 parent 40578e9 commit 4d23f3f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"nextcloud/ocp": "v30.0.2",
"psalm/phar": "5.26.1",
"nextcloud/coding-standard": "v1.3.2",
"phpunit/phpunit": "10.5.38",
"symfony/console": "6.4.13",
"colinodell/psr-testlogger": "1.0.0"
"colinodell/psr-testlogger": "1.0.0",
"phpunit/phpunit": "11.4.2",
"symfony/console": "7.1.5"
},
"autoload": {
"psr-4": {
Expand All @@ -40,7 +40,7 @@
"composer/package-versions-deprecated": true
},
"platform": {
"php": "8.1"
"php": "8.2"
}
}
}
10 changes: 9 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"description": "disable major updates for the vaas dependency",
"matchDepNames": "gdata/vaas",
"enabled": false,
"matchUpdateTypes": ["major"]
}
]
}

0 comments on commit 4d23f3f

Please sign in to comment.