Skip to content

Commit 09f7920

Browse files
Merge pull request #91 from harmoniqs/fix/ci-force-latest-flag
ci: gate force_latest_compatible_version to Julia 1.12
2 parents db61d81 + 1e61ace commit 09f7920

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/CI.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ jobs:
4040
- uses: julia-actions/cache@v3
4141
- uses: julia-actions/julia-buildpkg@v1
4242
- 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' }}
4349
- uses: julia-actions/julia-processcoverage@v1
4450
- uses: codecov/codecov-action@v6
4551
with:

0 commit comments

Comments
 (0)