diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 4d8ca5f8c..d15988349 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -11,6 +11,9 @@ # Software description: A SwiftUI components library with code examples for Orange Unified Design System # +# About runners: https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners +# Runners details: https://github.com/actions/runner-images/tree/main/images/macos + name: Build and Test on: @@ -32,7 +35,7 @@ on: jobs: # Build the app (if there are linter errors or compiler issues, it will fail) build: - runs-on: macos-latest + runs-on: macos-15 steps: - name: Checkout code uses: actions/checkout@v4 @@ -57,7 +60,7 @@ jobs: # Test the library with unit tests test: - runs-on: macos-latest + runs-on: macos-15 steps: - name: Checkout code uses: actions/checkout@v4 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c010259..e6ea09170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - [Library] Warning issues for DocC catalogs ([#293](https://github.com/Orange-OpenSource/ouds-ios/issues/293)) +### Changed + +- [Tool] Use `macos-15` runner for GitHub Actions builds ([#296](https://github.com/Orange-OpenSource/ouds-ios/issues/296)) ## [0.6.0](https://github.com/Orange-OpenSource/ouds-ios/compare/0.5.0...0.6.0) - 2024-11-15