Skip to content

Commit

Permalink
actions/checkout v4
Browse files Browse the repository at this point in the history
  • Loading branch information
arielelkin committed Sep 13, 2024
1 parent e6cd59d commit 9259fa8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Primary
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.0.app
Expand All @@ -35,23 +35,23 @@ jobs:
name: Swift Package Manager
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Swift Build
run: swift build

cocoapods:
name: Cocoapods
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Lint Podspec
run: pod lib lint --allow-warnings

xcframework:
name: XCFramework
runs-on: macOS-13
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Build XCFramework
run: ci/build_xcframework.sh
Expand All @@ -68,7 +68,7 @@ jobs:
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') # only if tag is pushed
needs: [primary, cocoapods, spm, xcframework]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 9259fa8

Please sign in to comment.