Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: set-matrix
run: |
matrix=$(cat .github/matrix.json | jq -c .)
Expand All @@ -32,7 +32,7 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cache SPM build directory
uses: actions/cache@v4
env:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Install iOS 18.2 simulator
if: ${{ matrix.xcode_version == '16.2' }}
run: xcodebuild -downloadPlatform iOS -buildVersion 18.2
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cache SPM build directory
uses: actions/cache@v4
env:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- name: Install iOS 18.2 simulator
if: ${{ matrix.xcode_version == '16.2' }}
run: xcodebuild -downloadPlatform iOS -buildVersion 18.2
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cache SPM build directory
uses: actions/cache@v4
env:
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Disable SwiftLint Plugin
run: sed -i -e 's/.*SwiftLint.*//g' Package.swift
- name: Copy .swiftlint.yml for demo app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
EXECUTABLE_NAME: buildconfigswift
EXECUTABLE_VERSION: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cache SPM build directory
uses: actions/cache@v4
env:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
env:
POD_VERSION: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint
run: pod spec lint
- name: Deploy
Expand Down
Loading