From b219d7170b1dbebf11b8a8b50e26f41e848e72d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 03:16:16 +0000 Subject: [PATCH 1/4] 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 ++-- .github/workflows/FerriteMasterCI.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4e1f1974..868e996e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,7 +33,7 @@ jobs: - x64 steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} @@ -54,7 +54,7 @@ jobs: timeout-minutes: 30 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 diff --git a/.github/workflows/FerriteMasterCI.yml b/.github/workflows/FerriteMasterCI.yml index 8a12dd14..ce3bf8e3 100644 --- a/.github/workflows/FerriteMasterCI.yml +++ b/.github/workflows/FerriteMasterCI.yml @@ -28,7 +28,7 @@ jobs: - x64 steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} From a5a6941fa157be27fe13e46287f4dfd987216c08 Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Mon, 4 May 2026 09:35:58 +0200 Subject: [PATCH 2/4] Remove arch and use pre/lts --- .github/workflows/CI.yml | 8 ++------ .github/workflows/FerriteMasterCI.yml | 5 +---- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 868e996e..8243c37d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,7 +12,7 @@ concurrency: cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} timeout-minutes: 15 env: @@ -20,17 +20,13 @@ jobs: strategy: fail-fast: false matrix: - version: ['1.11', '1', 'pre'] # 'lts' not supported as public is used + version: ['lts', '1', 'pre'] os: ['ubuntu-latest'] include: - os: windows-latest version: '1' - arch: x64 - os: macOS-latest version: '1' - arch: x64 - arch: - - x64 steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3 diff --git a/.github/workflows/FerriteMasterCI.yml b/.github/workflows/FerriteMasterCI.yml index ce3bf8e3..0a59bfce 100644 --- a/.github/workflows/FerriteMasterCI.yml +++ b/.github/workflows/FerriteMasterCI.yml @@ -14,7 +14,7 @@ concurrency: cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} timeout-minutes: 15 strategy: @@ -24,14 +24,11 @@ jobs: - '1' os: - ubuntu-latest - arch: - - x64 steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: julia-actions/cache@v3 # - uses: julia-actions/julia-buildpkg@v1 # Replaced by the following - run: | From fa26c926b50b83cc2fe3891e44bc5f655cdaf0ba Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Mon, 4 May 2026 09:43:55 +0200 Subject: [PATCH 3/4] Apply suggestion from @KnutAM --- .github/workflows/CI.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8243c37d..b5c45a3b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,6 @@ jobs: - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 From 2a91c7a27c44454ee1114b56aa8500747c9ef16b Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Mon, 4 May 2026 09:47:57 +0200 Subject: [PATCH 4/4] Apply suggestion from @KnutAM --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b5c45a3b..69772c91 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - version: ['lts', '1', 'pre'] + version: ['1.11', '1', 'pre'] # 'lts' not supported as public is used os: ['ubuntu-latest'] include: - os: windows-latest