Skip to content

Commit 604da03

Browse files
author
Guille Gonzalez
authored
Update GitHub actions (#110)
* Update CI action to use Xcode 13.4.1 * Revert snapshot * Update format action to use [email protected]
1 parent 4c16430 commit 604da03

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88
- '*'
99
jobs:
1010
tests:
11-
runs-on: macos-11
11+
runs-on: macos-12
1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Select Xcode 13.2.1
15-
run: sudo xcode-select -s /Applications/Xcode_13.2.1.app
14+
- name: Select Xcode 13.4.1
15+
run: sudo xcode-select -s /Applications/Xcode_13.4.1.app
1616
- name: Run tests
1717
run: make test

.github/workflows/format.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ on:
66
jobs:
77
format:
88
name: swift-format
9-
runs-on: macos-10.15
9+
runs-on: macos-12
1010
steps:
1111
- uses: actions/checkout@v2
12+
- name: Select Xcode 13.4.1
13+
run: sudo xcode-select -s /Applications/Xcode_13.4.1.app
1214
- name: Tap
1315
run: brew tap pointfreeco/formulae
1416
- name: Install
15-
run: brew install Formulae/swift-format@5.3
17+
run: brew install Formulae/swift-format@5.6
1618
- name: Format
1719
run: make format
1820
- uses: stefanzweifel/git-auto-commit-action@v4

0 commit comments

Comments
 (0)