From 03c72a6fafcc2599479b11288547cb4108608112 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 04:07:27 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- .github/workflows/dependencies.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c273d7..d3ca2f1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -91,7 +91,7 @@ jobs: echo "|$(arch)|$(uname -m)|$(cmake --version | head -n1)|$(which "${CC}")|$("${CC}" --version | head -n1)|$("${CC}" -dumpmachine)|" >>${GITHUB_STEP_SUMMARY} shell: bash - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: recursive @@ -193,7 +193,7 @@ jobs: statuses: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Fetch Git tags, so that semantic version can be calculated. # Alternatively, run `git fetch --prune --unshallow --tags` as the @@ -259,7 +259,7 @@ jobs: packages: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Fetch Git tags, so that semantic version can be calculated. # Alternatively, run `git fetch --prune --unshallow --tags` as the diff --git a/.github/workflows/dependencies.yml b/.github/workflows/dependencies.yml index 40d376d..97b50eb 100644 --- a/.github/workflows/dependencies.yml +++ b/.github/workflows/dependencies.yml @@ -18,7 +18,7 @@ jobs: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Fetch Git tags, so that semantic version can be calculated. # Alternatively, run `git fetch --prune --unshallow --tags` as the From d85202edad349a421c1ba0201ca16b01cc9c56ba Mon Sep 17 00:00:00 2001 From: "Andrey S." Date: Wed, 31 Jul 2024 18:56:41 +0300 Subject: [PATCH 2/3] Work around MinGW incompatibilities This adds a workaround for: - egor-tensin/setup-mingw#14 --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d3ca2f1..5f32711 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,6 +62,7 @@ jobs: uses: egor-tensin/setup-mingw@v2 with: platform: ${{ matrix.arch }} + version: 12.2.0 - name: 'Set up MinGW environment' if: ${{ runner.os == 'Windows' }} From 3fe7ecfec684672bc44d0bfc5bde81fca76157d8 Mon Sep 17 00:00:00 2001 From: "Andrey S." Date: Wed, 31 Jul 2024 19:21:43 +0300 Subject: [PATCH 3/3] Run Mac OS X tests using `macos-13` image (the last Intel-based one) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f32711..76ad6fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: jna-os: linux - os: windows-latest jna-os: win32 - - os: macos-latest + - os: macos-13 jna-os: darwin - arch: x86 jna-arch: x86 @@ -168,7 +168,7 @@ jobs: jna-os: linux - os: windows-latest jna-os: win32 - - os: macos-latest + - os: macos-13 jna-os: darwin - arch: x86 jna-arch: x86