From f4dec5fd7e3d7f60475e8753b62a05ec1e05ffb1 Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Mon, 9 Dec 2024 09:06:09 -0800 Subject: [PATCH 1/4] Increase SwiftLint version. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7737d9314..7cf6a0065 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: SwiftLint - uses: docker://norionomura/swiftlint:0.54.0_swift-5.9.0 + uses: docker://norionomura/swiftlint:0.57.1_swift-5.9 with: args: swiftlint --reporter github-actions-logging --strict --quiet From 0e64584b012fa2d36839a11fd9ed6c767d1d281d Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Mon, 9 Dec 2024 09:15:23 -0800 Subject: [PATCH 2/4] Remove the quiet option. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7cf6a0065..680519425 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -16,7 +16,7 @@ jobs: - name: SwiftLint uses: docker://norionomura/swiftlint:0.57.1_swift-5.9 with: - args: swiftlint --reporter github-actions-logging --strict --quiet + args: swiftlint --reporter github-actions-logging --strict unit-tests: From b3f672c86942309c0d9838b66932569ce2534af8 Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Mon, 9 Dec 2024 09:16:27 -0800 Subject: [PATCH 3/4] Remove invalid rule. --- Tests/.swiftlint.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/Tests/.swiftlint.yml b/Tests/.swiftlint.yml index bf8a5655d..3fc6090ad 100644 --- a/Tests/.swiftlint.yml +++ b/Tests/.swiftlint.yml @@ -10,7 +10,6 @@ disabled_rules: - blanket_disable_command - type_body_length - explicit_non_final_class - - enforce_os_log_wrapper large_tuple: warning: 6 From b6082677423c3ca4ded1163fc0144ae8f9e29d42 Mon Sep 17 00:00:00 2001 From: Sam Symons Date: Mon, 9 Dec 2024 09:17:13 -0800 Subject: [PATCH 4/4] Add `--quiet` back. --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 680519425..7cf6a0065 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -16,7 +16,7 @@ jobs: - name: SwiftLint uses: docker://norionomura/swiftlint:0.57.1_swift-5.9 with: - args: swiftlint --reporter github-actions-logging --strict + args: swiftlint --reporter github-actions-logging --strict --quiet unit-tests: