Compare commits

..

2 Commits

Author SHA1 Message Date
Renovate Bot
0c1f2990f7 Update dotnet monorepo to v9
All checks were successful
Generation data pour merge sur master / reviewProcess (pull_request) Successful in 1m24s
2024-09-13 14:22:58 +00:00
7c882fb17a Ajout d'un cron renovate pour les dependances
Some checks failed
Generation data pour merge sur master / reviewProcess (push) Successful in 1m20s
renovate / renovate (push) Failing after 15s
2024-09-13 16:15:52 +02:00
5 changed files with 24 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:37.20.2
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/mcmuzzle/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}

View File

@@ -17,7 +17,7 @@ jobs:
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0.x'
dotnet-version: '8.0.x'
- name: Install dependencies
run: dotnet restore ./src/LudikZone.sln
- name: Build

View File

@@ -1,6 +1,6 @@
services:
postgresql:
image: postgres:18
image: postgres:16
ports:
- "${DB_PORT:-5432}:5432"
volumes:

View File

@@ -1,6 +1,6 @@
services:
postgresql:
image: postgres:18
image: postgres:16
ports:
- "${DB_PORT:-5432}:5432"
volumes:

View File

@@ -5,7 +5,7 @@
"packageRules": [
{
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": false
"automerge": true
}
]
}