Skip to content

Commit 1d32251

Browse files
Merge pull request #617 from microsoft/feature/dependabot-upgrade-validation
build: upgrade backend, frontend dependencies and CI workflows
2 parents d02a2ac + dcb1581 commit 1d32251

11 files changed

Lines changed: 35 additions & 35 deletions

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout Code
40-
uses: actions/checkout@v5 # Checks out your repository
40+
uses: actions/checkout@v6 # Checks out your repository
4141

4242
- name: Install Kubernetes CLI (kubectl)
4343
shell: bash
@@ -76,7 +76,7 @@ jobs:
7676
helm version
7777
7878
- name: Set up Docker
79-
uses: docker/setup-buildx-action@v3
79+
uses: docker/setup-buildx-action@v4
8080
with:
8181
driver: docker
8282

.github/workflows/Create-Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.event.workflow_run.head_sha }}
2020

21-
- uses: codfish/semantic-release-action@v3
21+
- uses: codfish/semantic-release-action@v5
2222
id: semantic
2323
with:
2424
tag-format: 'v${version}'

.github/workflows/broken-links-checker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

2323
# For PR : Get only changed markdown files
2424
- name: Get changed markdown files (PR only)
2525
id: changed-markdown-files
2626
if: github.event_name == 'pull_request'
27-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46
27+
uses: tj-actions/changed-files@22103cc46bda19c2b464ffe86db46df6922fd323 # v46
2828
with:
2929
files: |
3030
**/*.md
@@ -34,7 +34,7 @@ jobs:
3434
- name: Check Broken Links in Changed Markdown Files
3535
id: lychee-check-pr
3636
if: github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
37-
uses: lycheeverse/lychee-action@v2.6.1
37+
uses: lycheeverse/lychee-action@v2.8.0
3838
with:
3939
args: >
4040
--verbose --no-progress --exclude ^https?://
@@ -47,7 +47,7 @@ jobs:
4747
- name: Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4848
id: lychee-check-manual
4949
if: github.event_name == 'workflow_dispatch'
50-
uses: lycheeverse/lychee-action@v2.6.1
50+
uses: lycheeverse/lychee-action@v2.8.0
5151
with:
5252
args: >
5353
--verbose --no-progress --exclude ^https?://

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v5
43+
uses: actions/checkout@v6
4444

4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v3
46+
uses: github/codeql-action/init@v4
4747
with:
4848
languages: ${{ matrix.language }}
4949
build-mode: ${{ matrix.build-mode }}
@@ -55,6 +55,6 @@ jobs:
5555
exit 1
5656
5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@v3
58+
uses: github/codeql-action/analyze@v4
5959
with:
6060
category: "/language:${{matrix.language}}"

.github/workflows/scheduled-Dependabot-PRs-Auto-Merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Install GitHub CLI
4242
run: |

.github/workflows/stale-bot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout Repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0 # Fetch full history for accurate branch checks
3030
- name: Fetch All Branches
@@ -75,7 +75,7 @@ jobs:
7575
env:
7676
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7777
- name: Upload CSV Report of Inactive Branches
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v7
7979
with:
8080
name: merged-branches-report
8181
path: merged_branches_report.csv

.github/workflows/test-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Set up Python
2626
uses: actions/setup-python@v6
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Upload test report
8080
id: upload_report
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v7
8282
if: ${{ !cancelled() }}
8383
with:
8484
name: test-report

App/backend-api/Microsoft.GS.DPS.Host/Microsoft.GS.DPS.Host.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,22 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Azure.Data.AppConfiguration" Version="1.6.1" />
15-
<PackageReference Include="Azure.Identity" Version="1.14.1" />
14+
<PackageReference Include="Azure.Data.AppConfiguration" Version="1.9.0" />
15+
<PackageReference Include="Azure.Identity" Version="1.20.0" />
1616
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
1717
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
18-
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.12.0" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.2.0" />
18+
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.13.1" />
19+
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.5.0" />
2020
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
2121
<PackageReference Include="Microsoft.SemanticKernel" Version="1.32.0" />
22-
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.21.0" />
22+
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
2323
<PackageReference Include="MimeTypesMap" Version="1.0.9" />
2424
<PackageReference Include="MongoDB.Bson" Version="2.29.0" />
2525
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
2626
<PackageReference Include="MongoDB.Driver.Core" Version="2.29.0" />
27-
<PackageReference Include="NSwag.AspNetCore" Version="14.4.0" />
28-
<PackageReference Include="NSwag.Core" Version="14.4.0" />
29-
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.1" />
27+
<PackageReference Include="NSwag.AspNetCore" Version="14.6.3" />
28+
<PackageReference Include="NSwag.Core" Version="14.6.3" />
29+
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7" />
3030
</ItemGroup>
3131

3232
<ItemGroup>

App/backend-api/Microsoft.GS.DPS/Microsoft.GS.DPS.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Azure.Identity" Version="1.14.1" />
11-
<PackageReference Include="Azure.Search.Documents" Version="11.6.1" />
12-
<PackageReference Include="FluentValidation" Version="12.0.0" />
13-
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.0.0" />
10+
<PackageReference Include="Azure.Identity" Version="1.20.0" />
11+
<PackageReference Include="Azure.Search.Documents" Version="11.7.0" />
12+
<PackageReference Include="FluentValidation" Version="12.1.1" />
13+
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
1414
<PackageReference Include="Microsoft.KernelMemory.WebClient" Version="0.79.241014.2" />
1515
<PackageReference Include="Microsoft.Maui.Graphics" Version="9.0.110" />
1616
<PackageReference Include="Microsoft.Maui.Graphics.Skia" Version="9.0.110" />
1717
<PackageReference Include="MongoDB.Driver" Version="2.29.0" />
1818
<PackageReference Include="MongoDB.Driver.Core" Version="2.29.0" />
19-
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
19+
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.2" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

App/frontend-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"vite": "^7.1.7"
9292
},
9393
"volta": {
94-
"node": "18.16.0",
94+
"node": "20.18.1",
9595
"yarn": "1.22.19"
9696
}
9797
}

0 commit comments

Comments
 (0)