Skip to content

Commit a6d3793

Browse files
committed
👷 updated CI and excluded codeql as github did not apply fix for .net10 github/codeql-action#3207
1 parent c1ce7ec commit a6d3793

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

.github/workflows/pipelines.yml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
configuration: [Debug, Release]
30-
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v2
30+
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
3131
with:
3232
configuration: ${{ matrix.configuration }}
3333
strong-name-key-filename: versioning.snk
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
matrix:
4343
configuration: [Debug, Release]
44-
uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v2
44+
uses: codebeltnet/jobs-dotnet-pack/.github/workflows/default.yml@v3
4545
with:
4646
configuration: ${{ matrix.configuration }}
4747
version: ${{ needs.build.outputs.version }}
@@ -54,17 +54,18 @@ jobs:
5454
matrix:
5555
os: [ubuntu-24.04, windows-2022]
5656
configuration: [Debug, Release]
57-
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v2
57+
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
5858
with:
5959
configuration: ${{ matrix.configuration }}
6060
runs-on: ${{ matrix.os }}
6161
build-switches: -p:SkipSignAssembly=true
6262
restore: true
63+
build: true # needed for xunitv3
6364

6465
sonarcloud:
6566
name: call-sonarcloud
6667
needs: [build,test]
67-
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v2
68+
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
6869
with:
6970
organization: geekle
7071
projectKey: asp-versioning
@@ -79,18 +80,18 @@ jobs:
7980
repository: codebeltnet/asp-versioning
8081
secrets: inherit
8182

82-
codeql:
83-
name: call-codeql
84-
needs: [build,test]
85-
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v2
86-
permissions:
87-
security-events: write
83+
# codeql:
84+
# name: call-codeql
85+
# needs: [build,test]
86+
# uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
87+
# permissions:
88+
# security-events: write
8889

8990
deploy:
9091
if: github.event_name != 'pull_request'
9192
name: call-nuget
92-
needs: [build, pack, test, sonarcloud, codecov, codeql]
93-
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v1
93+
needs: [build, pack, test, sonarcloud, codecov]
94+
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
9495
with:
9596
version: ${{ needs.build.outputs.version }}
9697
environment: Production

0 commit comments

Comments
 (0)