Skip to content

Commit 8f033fe

Browse files
committed
ci: remove docs and security gates; align to net10
1 parent ff01fdf commit 8f033fe

4 files changed

Lines changed: 9 additions & 106 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -23,34 +23,13 @@ defaults:
2323
shell: pwsh
2424

2525
jobs:
26-
documentation_quality:
27-
runs-on: ubuntu-latest
28-
permissions:
29-
contents: read
30-
steps:
31-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32-
with:
33-
fetch-depth: 1
34-
- name: Update Git submodules
35-
run: git submodule update --init --recursive
36-
- name: Run documentation metrics
37-
run: ./scripts/Get-DocumentationMetrics.ps1 -MinimumScore 85 -EnforceMinimum -OutputJsonPath ./.docs/reports/documentation-metrics.json
38-
- name: Upload documentation metrics artifact
39-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
40-
with:
41-
name: documentation-metrics
42-
if-no-files-found: error
43-
retention-days: 14
44-
path: ./.docs/reports/documentation-metrics.json
45-
4626
create_nuget:
4727
runs-on: ubuntu-latest
48-
needs: [ documentation_quality ]
4928
permissions:
5029
contents: read # Required for repository checkout.
5130
strategy:
5231
matrix:
53-
dotnet-version: [ '8.0.x' ]
32+
dotnet-version: [ '10.0.x' ]
5433

5534
steps:
5635
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
@@ -85,6 +64,8 @@ jobs:
8564
# Install the .NET SDK indicated in the global.json file
8665
- name: Setup .NET
8766
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
67+
with:
68+
dotnet-version: 10.0.x
8869

8970
# Download the NuGet package created in the previous job
9071
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
@@ -105,6 +86,8 @@ jobs:
10586
run: git submodule update --init --recursive
10687
- name: Setup .NET
10788
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
89+
with:
90+
dotnet-version: 10.0.x
10891
- name: Run tests
10992
run: dotnet test --configuration Release
11093

@@ -125,6 +108,8 @@ jobs:
125108
# Install the .NET SDK indicated in the global.json file
126109
- name: Setup .NET Core
127110
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7 # v5.2.0
111+
with:
112+
dotnet-version: 10.0.x
128113

129114
# Publish all NuGet packages to NuGet.org
130115
# Use --skip-duplicate to prevent errors if a package with the same version already exists.

.github/workflows/security.yml

Lines changed: 0 additions & 82 deletions
This file was deleted.

src/Syrx.Commanders.Databases.Connectors.SqlServer/Syrx.Commanders.Databases.Connectors.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Description>This package provides support for SQL Server connections by implementing a SqlServerDatabaseConnector for the Syrx IDatabaseConnector. </Description>
44
<PackageReleaseNotes>
55
BREAKING CHANGE: Changed namespace.
6-
Updated to .NET8.0.
6+
Updated to .NET10.0.
77
</PackageReleaseNotes>
88
<PackageReadmeFile>readme.md</PackageReadmeFile>
99
<PackageTags>syrx;data access;orm;micro-orm;sql;sql-server</PackageTags>

src/Syrx.SqlServer/Syrx.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>This package provides Syrx support for SQL Server databases.</Description>
44
<PackageReleaseNotes>
5-
Updated to .NET8.0.
5+
Updated to .NET10.0.
66
Try using the new Syrx.SqlServer.Extensions to simplify wiring up and configuration!
77
</PackageReleaseNotes>
88
<PackageTags>syrx;data access;orm;micro-orm;sql;sql-server</PackageTags>

0 commit comments

Comments
 (0)