From 1eedbd83d503dcca653575fd641b8e9ac6a0c204 Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Sat, 7 Feb 2026 19:59:12 +0000 Subject: [PATCH 1/2] Fix downgrade.yml workflow: add missing version arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The downgrade workflow requires: - `version` argument in setup-julia step - `julia_version` argument in julia-downgrade-compat action Without these, the workflow may fail or use incorrect Julia versions. This PR ensures both arguments are properly specified to match the matrix version. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/downgrade.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml index 25778a3..26014da 100644 --- a/.github/workflows/downgrade.yml +++ b/.github/workflows/downgrade.yml @@ -21,9 +21,11 @@ jobs: - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} + julia_version: ${{ matrix.version }} - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra,Dates + julia_version: ${{ matrix.version }} - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 From a80a9b1bebf51f61560e8d2762d535de8f33995f Mon Sep 17 00:00:00 2001 From: Stefan Krastanov Date: Sat, 7 Feb 2026 15:06:31 -0500 Subject: [PATCH 2/2] fixup --- .github/workflows/downgrade.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/downgrade.yml b/.github/workflows/downgrade.yml index 26014da..a39ce24 100644 --- a/.github/workflows/downgrade.yml +++ b/.github/workflows/downgrade.yml @@ -21,7 +21,6 @@ jobs: - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} - julia_version: ${{ matrix.version }} - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML,InteractiveUtils,Random,LinearAlgebra,Dates