diff --git a/lib/SimpleNonlinearSolve/.github/workflows/Downgrade.yml b/lib/SimpleNonlinearSolve/.github/workflows/Downgrade.yml new file mode 100644 index 000000000..cbcc6ac06 --- /dev/null +++ b/lib/SimpleNonlinearSolve/.github/workflows/Downgrade.yml @@ -0,0 +1,29 @@ +name: Downgrade +on: + pull_request: + branches: + - main + paths-ignore: + - 'docs/**' + push: + branches: + - master + paths-ignore: + - 'docs/**' +jobs: + test: + runs-on: ubuntu-latest + strategy: + matrix: + version: ['1'] + steps: + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v1 + with: + version: ${{ matrix.version }} + - uses: cjdoris/julia-downgrade-compat-action@v1 +# if: ${{ matrix.version == '1.6' }} + with: + skip: Pkg,TOML + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 \ No newline at end of file diff --git a/lib/SimpleNonlinearSolve/Project.toml b/lib/SimpleNonlinearSolve/Project.toml index 6d6d5a55f..bf943823d 100644 --- a/lib/SimpleNonlinearSolve/Project.toml +++ b/lib/SimpleNonlinearSolve/Project.toml @@ -30,21 +30,21 @@ SimpleNonlinearSolveStaticArraysExt = "StaticArrays" [compat] ADTypes = "0.2.6" -ArrayInterface = "7" -ChainRulesCore = "1" -ConcreteStructs = "0.2" -DiffEqBase = "6.126" +ArrayInterface = "7.7" +ChainRulesCore = "1.21" +ConcreteStructs = "0.2.3" +DiffEqBase = "6.146" FastClosures = "0.3" -FiniteDiff = "2" -ForwardDiff = "0.10.3" -LinearAlgebra = "1.9" -MaybeInplace = "0.1" -PrecompileTools = "1" -Reexport = "1" +FiniteDiff = "2.22" +ForwardDiff = "0.10.36" +LinearAlgebra = "1.10" +MaybeInplace = "0.1.1" +PrecompileTools = "1.2" +Reexport = "1.2" SciMLBase = "2.23" -StaticArrays = "1" -StaticArraysCore = "1.4" -julia = "1.9" +StaticArrays = "1.9" +StaticArraysCore = "1.4.2" +julia = "1.10" [extras] AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"