From 90d3163edcba28966e861ba973d5fb9441916132 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 16 Jun 2024 13:56:04 +0000 Subject: [PATCH 1/2] Actions(deps): Bump actions/checkout from 4.1.4 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/0ad4b8fadaa221de15dcec353f45205ec38ea70b...692973e3d937129bcbf40652eb9f2f61becf3332) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake.yml | 2 +- .github/workflows/makefile.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 1facb497..a64cec6e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -60,7 +60,7 @@ jobs: brew install --cask macfuse - name: Checkout Git branch - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: 'Configure with CMake' run: |- diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index ba79f5f9..aafe4bbb 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -43,7 +43,7 @@ jobs: python3-pytest - name: Checkout Git branch - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: 'Build and test (without coverage)' run: |- From d3d009e65e35625ca019ff6e6dd271da9b83898b Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 16 Jun 2024 17:30:53 +0200 Subject: [PATCH 2/2] cmake.yml: Downgrade to GCC 13.2 for macOS 12 to fix the build Seems like GitHub Actions managed to break GCC 13 with a recent update: Worked: macOS 12.7.4 20240514.3 + GCC 13.2.0 Broken: macOS 12.7.5 20240602.1 + GCC 13.3.0 ^ ^^^^^ ^ Result "not found" for test "Looking for include file sys/xattr.h" is the earliest indicator something broke on their side during the build. Potentially related to https://github.com/actions/runner-images/issues/9997 . --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index a64cec6e..f4a12dc1 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -30,7 +30,7 @@ jobs: clang_major_version: 18 runs-on: ubuntu-24.04 # macFUSE on macOS - - cc: gcc-13 + - cc: gcc-12 clang_major_version: null runs-on: macos-12 - cc: clang-15