diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml
index bf2cacd..5920b9d 100644
--- a/.github/workflows/run-tests.yml
+++ b/.github/workflows/run-tests.yml
@@ -1,5 +1,8 @@
name: ๐งช Run Tests
+permissions:
+ contents: read
+
on:
pull_request:
types: [opened, synchronize, reopened]
@@ -10,7 +13,7 @@ on:
jobs:
build:
- runs-on: macos-14 # Apple Silicon Runner
+ runs-on: macos-15 # Apple Silicon Runner
steps:
- uses: actions/checkout@v4
@@ -21,7 +24,7 @@ jobs:
- name: Select latest Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
- xcode-version: '16.2'
+ xcode-version: '16.4'
- name: ๐ ๏ธ Run All Tests
run: |
diff --git a/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-private.md b/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-private.md
index 8a105df..58a3a66 100644
--- a/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-private.md
+++ b/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-private.md
@@ -1,6 +1,6 @@
-# โ ๏ธ 60 public changes detected โ ๏ธ
+# โ ๏ธ 57 public changes detected โ ๏ธ
_Comparing `new_private` to `old_private`_
-
| โ๏ธ | 34 Additions |
| ๐ | 22 Modifications |
| โ | 4 Removals |
+| โ๏ธ | 31 Additions |
| ๐ | 22 Modifications |
| โ | 4 Removals |
---
## `ReferencePackage`
@@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
}
```
```swift
-public protocol ParentProtocol {
- associatedtype Iterator: Swift.Collection
- associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
-}
-```
-```swift
public protocol ParentProtocol {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
@@ -303,12 +297,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
-associatedtype AnotherAssociatedType: Swift.Strideable
-```
-```swift
-associatedtype CustomAssociatedType: Swift.Equatable
-```
-```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
#### ๐ Modified
diff --git a/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-public.md b/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-public.md
index 492b801..e7ed710 100644
--- a/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-public.md
+++ b/Tests/IntegrationTests/Resources/expected-reference-changes-swift-interface-public.md
@@ -1,6 +1,6 @@
-# โ ๏ธ 51 public changes detected โ ๏ธ
+# โ ๏ธ 48 public changes detected โ ๏ธ
_Comparing `new_public` to `old_public`_
-| โ๏ธ | 31 Additions |
| ๐ | 16 Modifications |
| โ | 4 Removals |
+| โ๏ธ | 28 Additions |
| ๐ | 16 Modifications |
| โ | 4 Removals |
---
## `ReferencePackage`
@@ -33,12 +33,6 @@ public enum RawValueEnum: Swift.Equatable, Swift.Hashable, Swift.RawRepresentabl
}
```
```swift
-public protocol ParentProtocol {
- associatedtype Iterator: Swift.Collection
- associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
-}
-```
-```swift
public protocol ParentProtocol {
associatedtype Iterator: Swift.Collection
associatedtype ParentType: Swift.Equatable where Self.ParentType == Self.Iterator.Element
@@ -288,12 +282,6 @@ public enum PublicEnumInExtensionOfCustomEnumThatIsOnlyAvailableInTheReferencePa
associatedtype AnotherAssociatedType: Swift.Strideable
```
```swift
-associatedtype AnotherAssociatedType: Swift.Strideable
-```
-```swift
-associatedtype CustomAssociatedType: Swift.Equatable
-```
-```swift
associatedtype CustomAssociatedType: Swift.Equatable
```
#### ๐ Modified