Skip to content

Commit 36f31e3

Browse files
author
Andrew Omondi
committed
Merge remote-tracking branch 'origin/main' into andrueastman/enumParsin
2 parents 0f4db16 + 47b1505 commit 36f31e3

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

.github/workflows/project-auto-add.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
types:
1010
- opened
1111
branches:
12-
- 'main'
12+
- "main"
1313

1414
jobs:
1515
track_issue:
@@ -25,9 +25,9 @@ jobs:
2525

2626
- name: Check if issue has language specified
2727
env:
28-
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
28+
ISSUE_BODY: ${{github.event.issue.body}}
2929
run: |
30-
language=$(awk '/SDK language/{flag=1;next} /Describe/{flag=0} flag' <<< "${{github.event.issue.body}}" | tr -d '[:space:]')
30+
language=$(awk '/SDK language/{flag=1;next} /Describe/{flag=0} flag' <<< "$ISSUE_BODY" | tr -d '[:space:]')
3131
allowedList="PHP Python Go TypeScript Csharp Java PowerShell CLI Ruby Swift"
3232
if [[ $allowedList =~ (^|[[:space:]])$language($|[[:space:]]) ]]; then
3333
echo "$language is in allowed list";

it/go/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.5.2
77
github.com/microsoft/kiota-abstractions-go v1.6.0
88
github.com/microsoft/kiota-authentication-azure-go v1.0.2
9-
github.com/microsoft/kiota-http-go v1.3.3
9+
github.com/microsoft/kiota-http-go v1.4.1
1010
github.com/microsoft/kiota-serialization-form-go v1.0.0
1111
github.com/microsoft/kiota-serialization-json-go v1.0.7
1212
github.com/microsoft/kiota-serialization-multipart-go v1.0.0

it/go/go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ github.com/microsoft/kiota-abstractions-go v1.6.0 h1:qbGBNMU0/o5myKbikCBXJFohVCF
2929
github.com/microsoft/kiota-abstractions-go v1.6.0/go.mod h1:7YH20ZbRWXGfHSSvdHkdztzgCB9mRdtFx13+hrYIEpo=
3030
github.com/microsoft/kiota-authentication-azure-go v1.0.2 h1:tClGeyFZJ+4Bakf8u0euPM4wqy4ethycdOgx3jyH3pI=
3131
github.com/microsoft/kiota-authentication-azure-go v1.0.2/go.mod h1:aTcti0bUJEcq7kBfQG4Sr4ElvRNuaalXcFEu4iEyQ6M=
32-
github.com/microsoft/kiota-http-go v1.3.3 h1:FKjK5BLFONu5eIBxtrkirkixFQmcPwitZ8iwZHKbESo=
33-
github.com/microsoft/kiota-http-go v1.3.3/go.mod h1:IWw/PwtBs/GYz+Pa75gPW7MFNFv0aKPFsLw5WqzL1SE=
32+
github.com/microsoft/kiota-http-go v1.4.1 h1:zR54JahUOcu8h9C5z00fcQChzX8d01+BwhkTS8H16Ro=
33+
github.com/microsoft/kiota-http-go v1.4.1/go.mod h1:Kup5nMDD3a9sjdgRKHCqZWqtrv3FbprjcPaGjLR6FzM=
3434
github.com/microsoft/kiota-serialization-form-go v1.0.0 h1:UNdrkMnLFqUCccQZerKjblsyVgifS11b3WCx+eFEsAI=
3535
github.com/microsoft/kiota-serialization-form-go v1.0.0/go.mod h1:h4mQOO6KVTNciMF6azi1J9QB19ujSw3ULKcSNyXXOMA=
3636
github.com/microsoft/kiota-serialization-json-go v1.0.7 h1:yMbckSTPrjZdM4EMXgzLZSA3CtDaUBI350u0VoYRz7Y=

vscode/microsoft-kiota/package-lock.json

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vscode/microsoft-kiota/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@
431431
"@typescript-eslint/parser": "^7.5.0",
432432
"@vscode/test-electron": "^2.3.9",
433433
"eslint": "^8.57.0",
434-
"glob": "^10.3.12",
434+
"glob": "^10.3.14",
435435
"mocha": "^10.4.0",
436436
"ts-loader": "^9.5.1",
437437
"typescript": "^5.4.5",

0 commit comments

Comments
 (0)