From 05f0f087312df4a452a0782368fbfa839b01f8b7 Mon Sep 17 00:00:00 2001 From: Sergey Shaykhullin <46970457+sergeyshaykhullin@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:40:55 +0300 Subject: [PATCH] Bump packages, update CI to dotnet 8 --- .github/workflows/package.yaml | 6 +++--- .github/workflows/tests.yaml | 8 +++----- LICENSE | 2 +- ....Quartz.EntityFrameworkCore.Migrations.MySql.csproj | 2 +- ...tz.EntityFrameworkCore.Migrations.PostgreSQL.csproj | 4 ++-- ...Quartz.EntityFrameworkCore.Migrations.SQLite.csproj | 2 +- ...rtz.EntityFrameworkCore.Migrations.SqlServer.csproj | 4 ++-- ...AppAny.Quartz.EntityFrameworkCore.Migrations.csproj | 4 ++-- ....Quartz.EntityFrameworkCore.Migrations.Tests.csproj | 10 +++++----- 9 files changed, 20 insertions(+), 22 deletions(-) diff --git a/.github/workflows/package.yaml b/.github/workflows/package.yaml index c7b70ca..e0c80a5 100644 --- a/.github/workflows/package.yaml +++ b/.github/workflows/package.yaml @@ -19,10 +19,10 @@ jobs: uses: tenhaus/get-release-or-tag@v2 - name: Package | Setup - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x - include-prerelease: true + dotnet-version: 8.0.x + dotnet-quality: 'preview' - name: Package | Publish run: dotnet pack -c Release -o ./pack /p:Version=$VERSION $PROJECT diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 5325457..0567597 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -18,12 +18,10 @@ jobs: uses: actions/checkout@v2 - name: Tests | Setup - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x - include-prerelease: true - env: - NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + dotnet-version: 8.0.x + dotnet-quality: 'preview' - name: Tests run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov diff --git a/LICENSE b/LICENSE index f760c2d..c6ef09f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 AppAny +Copyright (c) 2023 AppAny Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj index bbf530b..945cdc4 100644 --- a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj +++ b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj @@ -3,7 +3,7 @@ net6.0;net7.0;net8.0 enable - 10 + 12 true true true diff --git a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL.csproj b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL.csproj index bc90c82..9c87424 100644 --- a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL.csproj +++ b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL.csproj @@ -3,7 +3,7 @@ net6.0;net7.0;net8.0 enable - 10 + 12 true true true @@ -15,7 +15,7 @@ https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations logo.png LICENSE - Copyright ©2021 AppAny + Copyright ©2023 AppAny sergeyshaykhullin EntityFrameworkCore PostgreSQL migrations for Quartz.NET .NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET;PostgreSQL diff --git a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite.csproj b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite.csproj index 5662cc2..fe35bc9 100644 --- a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite.csproj +++ b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite.csproj @@ -4,7 +4,7 @@ net6.0;net7.0;net8.0 enable enable - 10 + 12 true true true diff --git a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer.csproj b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer.csproj index 3e0e68c..101c6ff 100644 --- a/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer.csproj +++ b/src/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer.csproj @@ -3,7 +3,7 @@ net6.0;net7.0;net8.0 enable - 10 + 12 true true true @@ -16,7 +16,7 @@ https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations logo.png LICENSE - Copyright ©2021 AppAny + Copyright ©2023 AppAny sergeyshaykhullin EntityFrameworkCore SQL migrations for Quartz.NET .NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET;SqlServer diff --git a/src/AppAny.Quartz.EntityFrameworkCore.Migrations/AppAny.Quartz.EntityFrameworkCore.Migrations.csproj b/src/AppAny.Quartz.EntityFrameworkCore.Migrations/AppAny.Quartz.EntityFrameworkCore.Migrations.csproj index e97a8fc..dc1f897 100644 --- a/src/AppAny.Quartz.EntityFrameworkCore.Migrations/AppAny.Quartz.EntityFrameworkCore.Migrations.csproj +++ b/src/AppAny.Quartz.EntityFrameworkCore.Migrations/AppAny.Quartz.EntityFrameworkCore.Migrations.csproj @@ -3,7 +3,7 @@ net6.0;net7.0;net8.0 enable - 10 + 12 true true true @@ -15,7 +15,7 @@ https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations logo.png LICENSE - Copyright ©2021 AppAny + Copyright ©2023 AppAny sergeyshaykhullin,ZaoralJ EntityFrameworkCore migrations for Quartz.NET .NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET diff --git a/tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests.csproj b/tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests.csproj index 7845305..5bbd25d 100644 --- a/tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests.csproj +++ b/tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests.csproj @@ -21,14 +21,14 @@ - + - - + + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive