Skip to content

Commit 0b2bc75

Browse files
authored
Merge pull request #1129 from microsoftgraph/dev
refreshes main
2 parents fce0d58 + fed8955 commit 0b2bc75

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.azure-pipelines/generation-pipeline.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,7 @@ stages:
387387
targetClassName: "GraphBaseServiceClient"
388388
targetNamespace: "MicrosoftGraph"
389389
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
390+
customArguments: "-e '/me' -e '/me/**'" # Exclude me
390391
languageSpecificSteps:
391392
- template: generation-templates/ruby.yml
392393
parameters:
@@ -415,6 +416,7 @@ stages:
415416
targetClassName: "GraphBaseServiceClient"
416417
targetNamespace: "MicrosoftGraphBeta"
417418
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
419+
customArguments: "-e '/me' -e '/me/**'" # Exclude me
418420
languageSpecificSteps:
419421
- template: generation-templates/ruby.yml
420422
parameters:

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL
55-
uses: github/codeql-action/init@v2
55+
uses: github/codeql-action/init@v3
5656
with:
5757
languages: ${{ matrix.language }}
5858
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
6666
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6767
# If this step fails, then you should remove it and run the build manually (see below)
6868
- name: Autobuild
69-
uses: github/codeql-action/autobuild@v2
69+
uses: github/codeql-action/autobuild@v3
7070
with:
7171
working-directory: ${{ github.workspace }}/src/Typewriter
7272

@@ -81,6 +81,6 @@ jobs:
8181
# ./location_of_script_within_repo/buildscript.sh
8282

8383
- name: Perform CodeQL Analysis
84-
uses: github/codeql-action/analyze@v2
84+
uses: github/codeql-action/analyze@v3
8585
with:
8686
category: "/language:${{matrix.language}}"

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,19 +26,19 @@ jobs:
2626
- name: Test
2727
run: dotnet test ./Typewriter.sln --no-build --verbosity normal
2828
- name: Upload languages test output on failure
29-
uses: actions/upload-artifact@v3
29+
uses: actions/upload-artifact@v4
3030
if: ${{ failure() }}
3131
with:
3232
name: languages-test-output
3333
path: 'test/Typewriter.Test/bin/Debug/net7.0/OutputDirectory*/**'
3434
- name: Upload unit test output on failure
35-
uses: actions/upload-artifact@v3
35+
uses: actions/upload-artifact@v4
3636
if: ${{ failure() }}
3737
with:
3838
name: unit-test-output
3939
path: test/Typewriter.Test/bin/Debug/net7.0/output/
4040
- name: Upload unit test java output on failure
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
if: ${{ failure() }}
4343
with:
4444
name: unit-test-output-java

src/Typewriter/Typewriter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<Version>5.1.2</Version>
2727
</PackageReference>
2828
<PackageReference Include="NLog">
29-
<Version>5.2.6</Version>
29+
<Version>5.2.7</Version>
3030
</PackageReference>
3131
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
3232
</ItemGroup>

test/Typewriter.Test/Typewriter.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
<ItemGroup>
5858
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
5959
<PackageReference Include="NUnit">
60-
<Version>4.0.0</Version>
60+
<Version>4.0.1</Version>
6161
</PackageReference>
6262
<PackageReference Include="NUnit3TestAdapter">
6363
<Version>4.5.0</Version>

0 commit comments

Comments
 (0)