Skip to content

Commit

Permalink
chore(ci): move macos to macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Feb 5, 2024
1 parent fd646c0 commit da9e8db
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand All @@ -65,7 +65,7 @@ jobs:
lint:
name: Running swiftlint
needs: verify_cocoapods
runs-on: macos-latest
runs-on: macos-14

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-documentation-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release-from-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit da9e8db

Please sign in to comment.