Skip to content

Commit 93d272f

Browse files
committed
Update CI workflow and changelog for versioning
- Updated GitVersion action to use versionSpec '6.0.x' and reverted execute action to version '3.1.1'. - Upgraded upload-artifact action to version 'v4.6.2' for multiple upload steps. - Added changelog entry for version 0.5.1 addressing vulnerabilities in .NET (CVE-2024-38229, CVE-2024-35264). Signed-off-by: Victor Chang <[email protected]>
1 parent 6a883a5 commit 93d272f

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ jobs:
5353
- name: Setup GitVersion
5454
uses: gittools/actions/gitversion/[email protected]
5555
with:
56-
versionSpec: '6.0.5'
56+
versionSpec: '6.0.x'
5757

5858
- name: Determine Version
5959
id: gitversion
60-
uses: gittools/actions/gitversion/[email protected].11
60+
uses: gittools/actions/gitversion/[email protected].1
6161
with:
6262
useConfigFile: true
6363
updateAssemblyInfo: true
@@ -68,7 +68,7 @@ jobs:
6868
run: cat src/AssemblyInfo.cs
6969

7070
- name: Upload AssemblyInfo
71-
uses: actions/upload-artifact@v3.1.2
71+
uses: actions/upload-artifact@v4.6.2
7272
if: always()
7373
with:
7474
name: assembly-info
@@ -297,7 +297,7 @@ jobs:
297297
popd
298298
299299
- name: Upload Integration Test Results
300-
uses: actions/upload-artifact@v3.1.2
300+
uses: actions/upload-artifact@v4.6.2
301301
if: always()
302302
with:
303303
name: integration-${{ matrix.feature }}
@@ -386,7 +386,7 @@ jobs:
386386
dir -r ~/release
387387
388388
- name: Upload CLI
389-
uses: actions/upload-artifact@v3.1.2
389+
uses: actions/upload-artifact@v4.6.2
390390
with:
391391
name: artifacts
392392
path: ~/release
@@ -402,7 +402,7 @@ jobs:
402402

403403
- name: Upload Nuget
404404
if: ${{ matrix.os == 'ubuntu-latest' }}
405-
uses: actions/upload-artifact@v3.1.2
405+
uses: actions/upload-artifact@v4.6.2
406406
with:
407407
name: nuget
408408
path: ~/nupkg
@@ -529,7 +529,7 @@ jobs:
529529
Get-ChildItem ~\release -Recurse
530530
531531
- name: Upload docs
532-
uses: actions/upload-artifact@v3.1.2
532+
uses: actions/upload-artifact@v4.6.2
533533
with:
534534
name: artifacts
535535
path: ~/release

docs/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717

1818
# Changelog
1919

20+
## 0.5.1
21+
[GitHub Milestone 0.5.1](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/30)
22+
23+
- gh-521 Address vulnerabilities in .NET (CVE-2024-38229, CVE-2024-35264)
24+
2025
## 0.5.0
2126
[GitHub Milestone 0.5.0](https://github.com/Project-MONAI/monai-deploy-informatics-gateway/milestone/4)
2227

0 commit comments

Comments
 (0)