File tree Expand file tree Collapse file tree 10 files changed +16
-16
lines changed
Expand file tree Collapse file tree 10 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 1212 runs-on : windows-2022
1313 steps :
1414 - name : Checkout repository
15- uses : actions/checkout@v4
15+ uses : actions/checkout@v6
1616
1717 - name : update llvm to version 22
1818 run : choco upgrade llvm
Original file line number Diff line number Diff line change 1717
1818 steps :
1919 - name : Checkout repository
20- uses : actions/checkout@v2
20+ uses : actions/checkout@v6
2121
2222 - name : Download the Microsoft repository GPG keys
2323 run : wget -q https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb
4242 shell : pwsh
4343
4444 - name : Publish Build Artifacts
45- uses : actions/upload-artifact@v4
45+ uses : actions/upload-artifact@v6
4646 with :
4747 name : Build-linux-${{inputs.configuration}}
4848 if-no-files-found : error
Original file line number Diff line number Diff line change 2121 runs-on : ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222 steps :
2323 - name : Checkout repository
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v6
2525
2626 - name : Install NuGet CLI
2727 run : brew install nuget
3434 shell : pwsh
3535
3636 - name : Publish Build Artifacts
37- uses : actions/upload-artifact@v4
37+ uses : actions/upload-artifact@v6
3838 with :
3939 name : Build-macOS-${{ inputs.architecture }}-${{inputs.configuration}}
4040 if-no-files-found : error
Original file line number Diff line number Diff line change 2121 runs-on : windows-2025
2222 steps :
2323 - name : Checkout repository
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v6
2525
2626 - name : update llvm to version 22
2727 run : choco upgrade llvm
3131 shell : pwsh
3232
3333 - name : Publish Build Artifacts
34- uses : actions/upload-artifact@v4
34+ uses : actions/upload-artifact@v6
3535 with :
3636 name : Build-Windows-x64-${{inputs.configuration}}
3737 if-no-files-found : error
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ jobs:
1717 name : deploy-linux-${{ inputs.configuration }}
1818 runs-on : ubuntu-24.04
1919 steps :
20- - uses : actions/download-artifact@v4
20+ - uses : actions/download-artifact@v6
2121 with :
2222 name : Build-linux-Release
2323 path : Result.Linux.x64.${{ inputs.configuration }}
2424
2525 - name : Publish Artifacts
26- uses : actions/upload-artifact@v4
26+ uses : actions/upload-artifact@v6
2727 with :
2828 name : linux-${{ inputs.configuration }}
2929 if-no-files-found : error
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ jobs:
2020 name : deploy-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
2121 runs-on : ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
2222 steps :
23- - uses : actions/download-artifact@v4
23+ - uses : actions/download-artifact@v6
2424 with :
2525 path : Result.Darwin.${{ inputs.architecture }}.${{ inputs.configuration }}
2626 name : Build-macOS-${{ inputs.architecture }}-Release
2727
2828 - name : Publish Artifacts
29- uses : actions/upload-artifact@v4
29+ uses : actions/upload-artifact@v6
3030 with :
3131 name : macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
3232 if-no-files-found : error
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ jobs:
1717 name : deploy-windows-x64-${{ inputs.configuration }}
1818 runs-on : windows-2025
1919 steps :
20- - uses : actions/download-artifact@v4
20+ - uses : actions/download-artifact@v6
2121 with :
2222 path : Result.Windows.x64.MultiConfig
2323 name : Build-Windows-x64-Release
2424
2525 - name : Publish Artifacts
26- uses : actions/upload-artifact@v4
26+ uses : actions/upload-artifact@v6
2727 with :
2828 name : Windows-x64-${{ inputs.configuration }}
2929 if-no-files-found : error
Original file line number Diff line number Diff line change 1818 runs-on : ubuntu-24.04
1919 steps :
2020 - name : Download Artifacts
21- uses : actions/download-artifact@v4
21+ uses : actions/download-artifact@v6
2222 with :
2323 name : Build-linux-${{ inputs.configuration }}
2424
Original file line number Diff line number Diff line change 1818 runs-on : ${{ inputs.architecture == 'x64' && 'macos-15-intel' || 'macos-latest' }}
1919 steps :
2020 - name : Download Artifacts
21- uses : actions/download-artifact@v4
21+ uses : actions/download-artifact@v6
2222 with :
2323 name : Build-macOS-${{ inputs.architecture }}-${{ inputs.configuration }}
2424
Original file line number Diff line number Diff line change 1515 runs-on : windows-2025
1616 steps :
1717 - name : Download All Artifacts
18- uses : actions/download-artifact@v4
18+ uses : actions/download-artifact@v6
1919 with :
2020 name : Build-Windows-x64-${{ inputs.configuration }}
2121
You can’t perform that action at this time.
0 commit comments