Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
outputs:
latest-xcode-version: ${{ steps.extract-xcode-version.outputs.latest_xcode_version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: extract-xcode-version
run: |
latest_xcode_version=$(cat .github/matrix.json | jq -r '.xcode_version | max')
Expand All @@ -32,7 +32,7 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_${{ needs.xcode-version.outputs.latest-xcode-version }}.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run Test
id: test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
podspec:
runs-on: macOS-14
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Lint
run: pod spec lint
- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
image: renovate/renovate:latest
options: --user root
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: validate
run: renovate-config-validator > validation-result.txt
- uses: actions/github-script@v7
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
latest-xcode-version: ${{ steps.set-matrix.outputs.latest-xcode-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: set-matrix
run: |
echo "matrix=$(cat .github/matrix.json | jq -c .)" >> $GITHUB_OUTPUT
Expand All @@ -40,7 +40,7 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run Test
id: test
run: |
Expand Down Expand Up @@ -88,6 +88,6 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app/Contents/Developer
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run Test
run: swift test
Loading