From da9e8db7a1144f13bcae7ceea5708ade26e91a4a Mon Sep 17 00:00:00 2001 From: ThibaultBee <37510686+ThibaultBee@users.noreply.github.com> Date: Mon, 5 Feb 2024 17:58:27 +0100 Subject: [PATCH] chore(ci): move macos to macos-14 --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/create-documentation-pr.yml | 2 +- .../workflows/create-release-from-changelog.yml | 2 +- .github/workflows/release.yml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66130f2..40e4194 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,11 +5,11 @@ on: [ push ] jobs: build-swift: name: Build with swift - runs-on: macos-latest + runs-on: macos-14 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: @@ -19,11 +19,11 @@ jobs: build-xcodebuild: name: Build with xcodebuild - runs-on: macos-latest + runs-on: macos-14 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: @@ -50,11 +50,11 @@ jobs: verify_cocoapods: name: Verify cocoapods podspec needs: [ build-xcodebuild, build-swift ] - runs-on: macos-latest + runs-on: macos-14 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: @@ -65,7 +65,7 @@ jobs: lint: name: Running swiftlint needs: verify_cocoapods - runs-on: macos-latest + runs-on: macos-14 steps: - name: Checkout diff --git a/.github/workflows/create-documentation-pr.yml b/.github/workflows/create-documentation-pr.yml index 4d3fb99..15d9a7b 100644 --- a/.github/workflows/create-documentation-pr.yml +++ b/.github/workflows/create-documentation-pr.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Check out current repository code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Create the documentation pull request uses: apivideo/api.video-create-readme-file-pull-request-action@main diff --git a/.github/workflows/create-release-from-changelog.yml b/.github/workflows/create-release-from-changelog.yml index b34f961..767f4f2 100644 --- a/.github/workflows/create-release-from-changelog.yml +++ b/.github/workflows/create-release-from-changelog.yml @@ -9,7 +9,7 @@ jobs: update-documentation: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create draft release if needed uses: apivideo/api.video-release-from-changelog-action@main with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 479f6f3..d031f44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,9 +4,9 @@ on: types: [published] jobs: deploy: - runs-on: macos-latest + runs-on: macos-14 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Cocoapods run: gem install cocoapods - name: Deploy to Cocoapods