File tree Expand file tree Collapse file tree 2 files changed +42
-13
lines changed Expand file tree Collapse file tree 2 files changed +42
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Downgrade
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - main
6
+ paths-ignore :
7
+ - ' docs/**'
8
+ push :
9
+ branches :
10
+ - master
11
+ paths-ignore :
12
+ - ' docs/**'
13
+ jobs :
14
+ test :
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ version : ['1']
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : julia-actions/setup-julia@v1
22
+ with :
23
+ version : ${{ matrix.version }}
24
+ - uses : cjdoris/julia-downgrade-compat-action@v1
25
+ # if: ${{ matrix.version == '1.6' }}
26
+ with :
27
+ skip : Pkg,TOML
28
+ - uses : julia-actions/julia-buildpkg@v1
29
+ - uses : julia-actions/julia-runtest@v1
Original file line number Diff line number Diff line change @@ -30,21 +30,21 @@ SimpleNonlinearSolveStaticArraysExt = "StaticArrays"
30
30
31
31
[compat ]
32
32
ADTypes = " 0.2.6"
33
- ArrayInterface = " 7"
34
- ChainRulesCore = " 1"
35
- ConcreteStructs = " 0.2"
36
- DiffEqBase = " 6.126 "
33
+ ArrayInterface = " 7.7 "
34
+ ChainRulesCore = " 1.21 "
35
+ ConcreteStructs = " 0.2.3 "
36
+ DiffEqBase = " 6.146 "
37
37
FastClosures = " 0.3"
38
- FiniteDiff = " 2"
39
- ForwardDiff = " 0.10.3 "
40
- LinearAlgebra = " 1.9 "
41
- MaybeInplace = " 0.1"
42
- PrecompileTools = " 1"
43
- Reexport = " 1"
38
+ FiniteDiff = " 2.22 "
39
+ ForwardDiff = " 0.10.36 "
40
+ LinearAlgebra = " 1.10 "
41
+ MaybeInplace = " 0.1.1 "
42
+ PrecompileTools = " 1.2 "
43
+ Reexport = " 1.2 "
44
44
SciMLBase = " 2.23"
45
- StaticArrays = " 1"
46
- StaticArraysCore = " 1.4"
47
- julia = " 1.9 "
45
+ StaticArrays = " 1.9 "
46
+ StaticArraysCore = " 1.4.2 "
47
+ julia = " 1.10 "
48
48
49
49
[extras ]
50
50
AllocCheck = " 9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
You can’t perform that action at this time.
0 commit comments