We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents db61d81 + 1e61ace commit 09f7920Copy full SHA for 09f7920
1 file changed
.github/workflows/CI.yml
@@ -40,6 +40,12 @@ jobs:
40
- uses: julia-actions/cache@v3
41
- uses: julia-actions/julia-buildpkg@v1
42
- uses: julia-actions/julia-runtest@v1
43
+ with:
44
+ # Default 'auto' forces latest-compatible versions on dependabot/CompatHelper
45
+ # PRs. JET compat is "0.9, 0.10, 0.11"; JET 0.10+ requires Julia 1.12, so
46
+ # forcing latest breaks resolution on 1.10/1.11. Restrict the force-latest
47
+ # behavior to 1.12 (where dependabot can actually exercise the new bound).
48
+ force_latest_compatible_version: ${{ matrix.version == '1.12' && 'auto' || 'false' }}
49
- uses: julia-actions/julia-processcoverage@v1
50
- uses: codecov/codecov-action@v6
51
with:
0 commit comments