1 Commits

Author SHA1 Message Date
Renovate Bot
95023aba34 Update ghcr.io/renovatebot/renovate Docker tag to v39.126.1
All checks were successful
Generation data pour merge sur master / reviewProcess (pull_request) Successful in 1m0s
2025-01-24 00:00:36 +00:00
3 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
name: renovate
on:
schedule:
- cron: "@daily"
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:39.126.1
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,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
WORKDIR /src
COPY ["src/LudikZoneBlazor/LudikZoneBlazor.csproj", "src/LudikZoneBlazor/LudikZoneBlazor.csproj"]
RUN dotnet restore "src/LudikZoneBlazor/LudikZoneBlazor.csproj"