|
20 | 20 | LATEST_COMMIT_TIMESPAN: ${{ steps.get-latest-commit-timespan.outputs.LATEST_COMMIT_TIMESPAN}} |
21 | 21 | steps: |
22 | 22 | - name: Checkout code |
23 | | - uses: actions/checkout@v4 |
| 23 | + uses: actions/checkout@v6 |
24 | 24 | with: |
25 | 25 | fetch-depth: 0 |
26 | 26 |
|
|
43 | 43 | runs-on: windows-latest |
44 | 44 | steps: |
45 | 45 | - name: Checkout code |
46 | | - uses: actions/checkout@v4 |
| 46 | + uses: actions/checkout@v6 |
47 | 47 | with: |
48 | 48 | submodules: 'true' |
49 | 49 |
|
|
61 | 61 | dotnet build PKSim.sln /p:Version=${{env.APP_VERSION}} -p:ExcludeDesigner=true |
62 | 62 |
|
63 | 63 | - name : Test |
64 | | - run: dotnet test PKSim.sln -v normal --no-build --logger:"html;LogFileName=../testLog_Windows.html" |
| 64 | + run: dotnet test PKSim.sln -v normal --no-build --logger:"html;LogFileName=${{ github.workspace }}/testLog_Windows.html" |
65 | 65 |
|
66 | 66 | - name: Sign PKSim.exe with CodeSignTool |
67 | 67 | uses: Open-Systems-Pharmacology/Workflows/.github/actions/codesigner-SSL@main |
@@ -109,19 +109,19 @@ jobs: |
109 | 109 | file_path: ./setup/deploy/PK-Sim.${{ env.APP_VERSION }}.msi |
110 | 110 |
|
111 | 111 | - name: Push test log as artifact |
112 | | - uses: actions/upload-artifact@v4 |
| 112 | + uses: actions/upload-artifact@v7 |
113 | 113 | with: |
114 | 114 | name: testLog_Windows |
115 | 115 | path: ./testLog*.html |
116 | 116 |
|
117 | 117 | - name: Push nightly installer as artifact |
118 | | - uses: actions/upload-artifact@v4 |
| 118 | + uses: actions/upload-artifact@v7 |
119 | 119 | with: |
120 | 120 | name: PKSim Installer ${{env.APP_VERSION}} |
121 | 121 | path: setup\deploy\*.msi |
122 | 122 |
|
123 | 123 | - name: Push nightly portable as artifact |
124 | | - uses: actions/upload-artifact@v4 |
| 124 | + uses: actions/upload-artifact@v7 |
125 | 125 | with: |
126 | 126 | name: PKSim Portable ${{env.APP_VERSION}} |
127 | 127 | path: setup\PK-Sim ${{env.APP_VERSION}} |
|
0 commit comments