1414 version : ${{ steps.release_info.outputs.version }}
1515 steps :
1616 - name : Checkout
17- uses : actions/checkout@v3
17+ uses : actions/checkout@v4
1818 with :
1919 fetch-depth : 0
2020 - name : Generate Release Info
3939 #Prepend patch notes with backticks
4040 sed -i '1s/^/```\n/' patch_notes.txt
4141 - name : Upload
42- uses : actions/upload-artifact@v3
42+ uses : actions/upload-artifact@v4
4343 with :
4444 name : release_info
4545 path : |
5656 OUTPUT_FILE_NAME : DOLServer_${{ matrix.build_target }}.zip
5757 steps :
5858 - name : Checkout
59- uses : actions/checkout@v3
59+ uses : actions/checkout@v4
6060 - name : Setup Dotnet
61- uses : actions/setup-dotnet@v3
61+ uses : actions/setup-dotnet@v4
6262 with :
6363 dotnet-version : ' 6.0.x'
6464 - name : Setup MinGW-w64
8787 cp libdol_detour.dll ../../../${{ matrix.build_target }}/dol_detour.dll
8888 - name : Test Build
8989 run : |
90- dotnet test --verbosity normal --filter "DOL.UnitTests&TestCategory!=Explicit " ./build/Tests/${{ matrix.build_target }}/lib/Tests.dll
91- dotnet test --verbosity normal --filter "DOL.Integration&TestCategory!=Explicit " ./build/Tests/${{ matrix.build_target }}/lib/Tests.dll
90+ dotnet test --verbosity normal --filter "DOL.UnitTests" ./build/Tests/${{ matrix.build_target }}/lib/Tests.dll
91+ dotnet test --verbosity normal --filter "DOL.Integration" ./build/Tests/${{ matrix.build_target }}/lib/Tests.dll
9292 - name : Add DOLConfig
9393 if : ${{ github.repository_owner == 'Dawn-of-Light' }}
9494 run : |
@@ -112,7 +112,7 @@ jobs:
112112 run : |
113113 (cd ${{ matrix.build_target }}/ && zip -r ../${{ env.OUTPUT_FILE_NAME }} * )
114114 - name : Upload Build Output
115- uses : actions/upload-artifact@v3
115+ uses : actions/upload-artifact@v4
116116 with :
117117 name : build_artifacts
118118 path : ${{ env.OUTPUT_FILE_NAME }}
@@ -123,9 +123,9 @@ jobs:
123123 runs-on : ubuntu-22.04
124124 steps :
125125 - name : Checkout
126- uses : actions/checkout@v3
126+ uses : actions/checkout@v4
127127 - name : Download artifacts
128- uses : actions/download-artifact@v3
128+ uses : actions/download-artifact@v4
129129 - name : Create Release
130130 run : |
131131 set -x
0 commit comments