@@ -12,14 +12,14 @@ jobs:
1212 name : Testing
1313 strategy :
1414 matrix :
15- dotnet : [ 'netcoreapp3.1 ', 'net6 .0', 'net7 .0' ]
15+ dotnet : ['net6.0 ', 'net7 .0', 'net462', 'net48','net8 .0' ]
1616 steps :
1717 - name : Checkout code base
1818 uses : actions/checkout@v2
1919
2020 - uses : actions/setup-dotnet@v3
2121 with :
22- dotnet-version : ' 7 .0.x'
22+ dotnet-version : ' 8 .0.x'
2323
2424 - name : Run tests
2525 run : dotnet test --verbosity normal -f ${{ matrix.dotnet }}
@@ -36,11 +36,11 @@ jobs:
3636
3737 - uses : actions/setup-dotnet@v3
3838 with :
39- dotnet-version : ' 7 .0.x'
39+ dotnet-version : ' 8 .0.x'
4040
41- - uses : actions/setup-node@v2
41+ - uses : actions/setup-node@v3
4242 with :
43- node-version : ' 16 '
43+ node-version : ' 20 '
4444
4545 - name : Add plugin for conventional commits
4646 run : npm install conventional-changelog-conventionalcommits
5353 - name : Dry Run Semantic to get next Version nummber
5454 working-directory : ./.github/workflows
5555 env :
56- GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
56+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5757 GIT_AUTHOR_NAME : thygesteffensen
5858 GIT_AUTHOR_EMAIL : 31892312+thygesteffensen@users.noreply.github.com
5959 run : |
7979 if : ${{ env.RELEASE_VERSION }}
8080
8181 - name : Generate docs
82- run : dotnet tool run tomd --input ExpressionEngine/bin/Release/net7 .0/ExpressionEngine.xml --output artifacts/Documentation.md
82+ run : dotnet tool run tomd --input ExpressionEngine/bin/Release/net8 .0/ExpressionEngine.xml --output artifacts/Documentation.md
8383 if : ${{ env.RELEASE_VERSION }}
8484
8585 - name : Release to GitHub and NuGet
0 commit comments