From 1a841894349ca26fdd3564ffcd4208dafa450c9e Mon Sep 17 00:00:00 2001 From: ThibaultBee Date: Mon, 21 Oct 2024 09:23:39 +0000 Subject: [PATCH] feat(swift5): ci: move macos and xcode target to latest --- .github/workflows/build.yml | 10 +++++----- .github/workflows/create-documentation-pr.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a584c86..a67b12b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: @@ -36,14 +36,14 @@ jobs: cocoapods: name: Verify cocopods podspec needs: [ build-xcodebuild ] - runs-on: macos-13 + runs-on: macos-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '14.2.0' + xcode-version: latest-stable - name: Verify cocoapods run: pod lib lint --allow-warnings diff --git a/.github/workflows/create-documentation-pr.yml b/.github/workflows/create-documentation-pr.yml index dba0008..be05cd5 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/release.yml b/.github/workflows/release.yml index e9717d5..997fcd2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,13 +4,13 @@ on: types: [published] jobs: deploy: - runs-on: macos-13 + runs-on: macos-latest steps: - uses: actions/checkout@v4 - name: xcode version uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '14.2.0' + xcode-version: latest-stable - name: Install Cocoapods run: gem install cocoapods