Skip to content

Commit 7fc495d

Browse files
committed
[CHORE] Action fixes: Iniefficient workaround for resolved file
1 parent 5ccae2e commit 7fc495d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: maxim-lobanov/setup-xcode@v1
3030
with:
31-
xcode-version: "16.3"
31+
xcode-version: latest
3232
- uses: actions/checkout@v3
3333
- uses: actions/cache@v3
3434
with:
@@ -72,6 +72,8 @@ jobs:
7272
key: macos-14-swift-510-spm-${{ hashFiles('**/Package.resolved') }}
7373
restore-keys: |
7474
macos-14-swift-510-tests-spm-
75+
- name: Remove Resolved
76+
run: rm -rf Package.resolved
7577
- name: Build
7678
run: swift build
7779
- name: Run tests
@@ -97,6 +99,8 @@ jobs:
9799
key: ${{ matrix.os }}-${{ matrix.swift }}-spm-${{ hashFiles('**/Package.resolved') }}
98100
restore-keys: |
99101
${{ matrix.os }}-tests-spm-
102+
- name: Remove Resolved
103+
run: rm -rf Package.resolved
100104
- name: Build
101105
run: swift build
102106
- name: Run tests

0 commit comments

Comments
 (0)