From 0abc2bfcd1aef2c74cd83989d3e69a8126a6b6c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 13:04:33 +0000 Subject: [PATCH 1/3] Bump actions/download-artifact from 6 to 7 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index cc95d62..310a22d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -68,7 +68,7 @@ jobs: # alternatively, to publish when a GitHub Release is created, use the following rule: # if: github.event_name == 'release' && github.event.action == 'published' steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: pattern: cibw-* path: dist From efa31e444e07be5150bccf0ee49f6ee904c1caa9 Mon Sep 17 00:00:00 2001 From: Xavier Garrido Date: Mon, 15 Dec 2025 14:20:57 +0100 Subject: [PATCH 2/3] Update macOS versions in CI workflow --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 310a22d..9e6b2ae 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -18,7 +18,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-13, macos-14] + os: [ubuntu-latest, macos-latest, macos-15-intel] steps: - uses: actions/checkout@v6 @@ -28,7 +28,7 @@ jobs: env: FC: gfortran-14 CC: gcc-14 - MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-13' && '13.0' || '14.0' }} + MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-13' && '13.0' || '15.0' }} - uses: actions/upload-artifact@v5 with: From d4ecdb31710e774e60cc803867af8061ef5ebc1f Mon Sep 17 00:00:00 2001 From: Xavier Garrido Date: Mon, 15 Dec 2025 14:27:25 +0100 Subject: [PATCH 3/3] Ressurect macos-14 --- .github/workflows/wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9e6b2ae..04c43c8 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -18,7 +18,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, macos-15-intel] + os: [ubuntu-latest, macos-14, macos-latest, macos-15-intel] steps: - uses: actions/checkout@v6 @@ -28,7 +28,7 @@ jobs: env: FC: gfortran-14 CC: gcc-14 - MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-13' && '13.0' || '15.0' }} + MACOSX_DEPLOYMENT_TARGET: ${{ matrix.os == 'macos-14' && '14.0' || '15.0' }} - uses: actions/upload-artifact@v5 with: