From 10fa354498930d226ed3b095b0469bb1b072a0d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 May 2026 10:42:50 +0000 Subject: [PATCH 1/3] Bump julia-actions/setup-julia from 2 to 3 Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 2 to 3. - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](https://github.com/julia-actions/setup-julia/compare/v2...v3) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index c4bb6f8..227bebc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,7 +39,7 @@ jobs: arch: x86 steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} @@ -55,7 +55,7 @@ jobs: statuses: write steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: '1' - uses: julia-actions/cache@v3 From e577b35297c40d27237d9b166cb9226a2c1d3704 Mon Sep 17 00:00:00 2001 From: Justin Willmert Date: Fri, 1 May 2026 08:32:41 -0500 Subject: [PATCH 2/3] Run macOS tests on ARM --- .github/workflows/CI.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 227bebc..d84a95f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,12 +31,16 @@ jobs: os: - ubuntu-latest - macOS-latest - arch: - - x64 - - x86 + include: + - os: ubuntu-latest + arch: x86 + - os: ubuntu-latest + arch: x64 + - os: macOS-latest + arch: arm64 exclude: - os: macOS-latest - arch: x86 + version: min steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3 From 3f37b2cab4f08ffddc0aa0adff90a84bb6e07c87 Mon Sep 17 00:00:00 2001 From: Justin Willmert Date: Fri, 1 May 2026 08:48:59 -0500 Subject: [PATCH 3/3] fixup! Run macOS tests on ARM --- .github/workflows/CI.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d84a95f..9efcc46 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -30,17 +30,10 @@ jobs: - 'nightly' os: - ubuntu-latest - - macOS-latest + arch: [ 'x86', 'x64' ] include: - - os: ubuntu-latest - arch: x86 - - os: ubuntu-latest - arch: x64 - - os: macOS-latest - arch: arm64 - exclude: - - os: macOS-latest - version: min + - { os: macOS-latest, arch: arm64, version: '1' } + - { os: macOS-latest, arch: arm64, version: 'nightly' } steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3