From 36d5ec00f0ffc5403a3d174cd86c896d3a8f46b7 Mon Sep 17 00:00:00 2001 From: KAWASHIMA Yoshiyuki Date: Tue, 7 Apr 2026 18:25:23 +0900 Subject: [PATCH] Change repository references and action versions --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index babd4064..06cc3207 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- xcresulttool status + xcresulttool status

# xcresulttool GitHub Action @@ -10,7 +10,7 @@ A GitHub Action that generates a human-readable test report from the Xcode resul The result is formatted into a test report that shows the success or failure of the tests, code coverages, logs, activities, and saved screenshots. -Here is [an example result](https://github.com/kishikawakatsumi/xcresulttool-example/pull/2/checks?check_run_id=3954797886). +Here is [an example of the results](https://github.com/slidoapp/xcresulttool/actions/workflows/test.yml). For more details, check the latest workflow run. Screen Shot Screen Shot @@ -33,7 +33,7 @@ in `TestResults.xcresult` ```yaml jobs: test: - runs-on: macos-11 + runs-on: macos-14 - name: Run Tests run: | xcodebuild -scheme MyFramework -resultBundlePath TestResults test @@ -46,7 +46,7 @@ jobs: ## Example ```yaml -- uses: kishikawakatsumi/xcresulttool@v1 +- uses: slidoapp/xcresulttool@v3.1.1 with: path: TestResults.xcresult if: success() || failure() @@ -57,7 +57,7 @@ jobs: ```yaml jobs: test: - runs-on: macos-11 + runs-on: macos-14 name: Test steps: - uses: actions/checkout@v2 @@ -65,7 +65,7 @@ jobs: run: | xcodebuild -scheme MyFramework -resultBundlePath TestResults test - - uses: kishikawakatsumi/xcresulttool@v1 + - uses: slidoapp/xcresulttool@v3.1.1 with: path: TestResults.xcresult if: success() || failure() @@ -76,7 +76,7 @@ jobs: ## Multiple result bundle paths ```yaml -- uses: kishikawakatsumi/xcresulttool@v1 +- uses: slidoapp/xcresulttool@v3.1.1 with: path: | results/Example.xcresult @@ -88,7 +88,7 @@ jobs: ## Input parameters ```yaml -- uses: kishikawakatsumi/xcresulttool@v1 +- uses: slidoapp/xcresulttool@v3.1.1 with: # Path to the xcresult bundle. path: 'TestResults.xcresult'