Skip to content

Commit 4307ca7

Browse files
committed
Upgrade Github actions
1 parent f80d34a commit 4307ca7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
runs-on: macos-14
1414
steps:
15-
- uses: actions/checkout@v4.1.7
15+
- uses: actions/checkout@v4.2.2
1616
- name: Run tests
1717
run: |
1818
xcodebuild -resolvePackageDependencies \
@@ -28,21 +28,21 @@ jobs:
2828
-derivedDataPath DerivedData \
2929
-clonedSourcePackagesDirPath ClonedSourcePackages \
3030
-enableCodeCoverage YES \
31-
-destination 'platform=iOS Simulator,name=iPhone 14' \
31+
-destination 'platform=iOS Simulator,name=iPhone 16' \
3232
| xcpretty --report junit --output test_report.xml
3333
- name: Extract code coverage
3434
run: |
3535
binary=DerivedData/Build/Products/Debug-iphonesimulator/ComposableNavigation.o
3636
profile=DerivedData/Build/ProfileData/*/Coverage.profdata
3737
xcrun --run llvm-cov show $binary --instr-profile $profile >> coverage.txt
3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@v4.5.0
39+
uses: codecov/codecov-action@v5.1.2
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }}
4242
files: ./coverage.txt
4343
fail_ci_if_error: true
4444
- name: Publish Test Report
45-
uses: mikepenz/action-junit-report@v4.3.1
45+
uses: mikepenz/action-junit-report@v5.2.0
4646
with:
4747
report_paths: 'test_report.xml'
4848

0 commit comments

Comments
 (0)