Skip to content

Commit afb8c32

Browse files
committed
update to actions/upload-artifact@v4
1 parent 0fb4379 commit afb8c32

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/deploy_tool_nupkg.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
Rename-Item -Path "$($fileName).zip" -NewName $fileName
4040
shell: pwsh
4141
- name: Upload package
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: nuget-tool-package
4545
path: Core/Cosmos.DataTransfer.Core/bin/Release/*.nupkg

.github/workflows/dotnet-build-test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: dotnet test --no-build --verbosity normal ./CosmosDbDataMigrationTool.sln
2626

2727
- name: Debug Build Artifact
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: debug-build
3131
path: /home/runner/work/data-migration-desktop-tool/data-migration-desktop-tool/Core/Cosmos.DataTransfer.Core/bin/Debug/net6.0 #path/to/artifact/ # or path/to/artifact
@@ -45,7 +45,7 @@ jobs:
4545
# - name: Build App
4646
# run: dotnet build --no-restore ./App/CosmosDbApp.sln
4747
# - name: Debug Build Artifact
48-
# uses: actions/upload-artifact@v3
48+
# uses: actions/upload-artifact@v4
4949
# with:
5050
# name: app-win-build
5151
# path: D:\a\data-migration-desktop-tool\data-migration-desktop-tool\App\Cosmos.DataTransfer.App\bin\Debug\net7.0-windows10.0.19041.0\win10-x64 #path/to/artifact/ # or path/to/artifact
@@ -68,7 +68,7 @@ jobs:
6868
# - name: Build App
6969
# run: dotnet build --no-restore ./App/CosmosDbApp.sln
7070
# - name: Debug Build Artifact
71-
# uses: actions/upload-artifact@v3
71+
# uses: actions/upload-artifact@v4
7272
# with:
7373
# name: app-mac-build
7474
# path: /Users/runner/work/data-migration-desktop-tool/data-migration-desktop-tool/App/Cosmos.DataTransfer.App/bin/Debug/net7.0-maccatalyst/maccatalyst-x64 #path/to/artifact/ # or path/to/artifact

.github/workflows/internal-test-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
-p:EnableCompressionInSingleFile=true \
6767
-p:Version=0.0.${{ github.run_number }}
6868
- name: Upload gui package
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: windows-gui-package
7272
path: win/

0 commit comments

Comments
 (0)