diff --git a/.ci/dotnet_run.sh b/.ci/dotnet_run.sh index d3b984f..fd6d6e6 100755 --- a/.ci/dotnet_run.sh +++ b/.ci/dotnet_run.sh @@ -1,5 +1,5 @@ #!/bin/bash -output=$(dotnet ./openxml-validator/bin/Release/net8.0/Program.dll --$2 $1) +output=$(dotnet ./openxml-validator/bin/Release/net10.0/Program.dll --$2 $1) echo $output echo "" if [[ $output == *"is not valid"* ]]; then diff --git a/.ci/validator.zip b/.ci/validator.zip index c28e891..03e0434 100644 Binary files a/.ci/validator.zip and b/.ci/validator.zip differ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e690226..4f99ef2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,8 +31,8 @@ jobs: run: | mkdir -p $HOME/dotnet cd $HOME/dotnet - wget https://download.visualstudio.microsoft.com/download/pr/4e3b04aa-c015-4e06-a42e-05f9f3c54ed2/74d1bb68e330eea13ecfc47f7cf9aeb7/dotnet-sdk-8.0.404-linux-x64.tar.gz - tar -xf dotnet-sdk-8.0.404-linux-x64.tar.gz + wget https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.100/dotnet-sdk-10.0.100-linux-x64.tar.gz + tar -xf dotnet-sdk-10.0.100-linux-x64.tar.gz - name: Test and validate examples run: |