From a7a349ba86905f012a46c4cec0508e7a300631e5 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 30 Jul 2025 10:48:47 -0400 Subject: [PATCH 1/2] Fix CI deprecation warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update julia-actions/setup-julia from v1 to v2 in Downstream.yml and ReleaseTest.yml - Update julia-actions/julia-buildpkg and julia-actions/julia-runtest from v1 to @latest in Downgrade.yml - Resolves Node.js 16 deprecation warnings by migrating to actions that support Node.js 20 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/Downgrade.yml | 4 ++-- .github/workflows/Downstream.yml | 2 +- .github/workflows/ReleaseTest.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index c7b7ea9737..0169c15e35 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -28,8 +28,8 @@ jobs: - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 + - uses: julia-actions/julia-buildpkg@latest + - uses: julia-actions/julia-runtest@latest with: ALLOW_RERESOLVE: false env: diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index ecfbcb584b..208ba45c94 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -45,7 +45,7 @@ jobs: - {user: Neuroblox, repo: Neuroblox.jl, group: All} steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} arch: x64 diff --git a/.github/workflows/ReleaseTest.yml b/.github/workflows/ReleaseTest.yml index a9e1ee1821..faf93c8c49 100644 --- a/.github/workflows/ReleaseTest.yml +++ b/.github/workflows/ReleaseTest.yml @@ -29,7 +29,7 @@ jobs: - {package: Catalyst, group: All} steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} arch: x64 From f1e54cfe56330052576c02fd41ecdd9e1dcfcb27 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Wed, 30 Jul 2025 10:56:59 -0400 Subject: [PATCH 2/2] Update .github/workflows/Downgrade.yml --- .github/workflows/Downgrade.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 0169c15e35..528c01c5bf 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -28,8 +28,8 @@ jobs: - uses: julia-actions/julia-downgrade-compat@v2 with: skip: Pkg,TOML - - uses: julia-actions/julia-buildpkg@latest - - uses: julia-actions/julia-runtest@latest + - uses: julia-actions/julia-buildpkg@1 + - uses: julia-actions/julia-runtest@1 with: ALLOW_RERESOLVE: false env: