From 552c647056f6ef7ea4a12f561cc91ec711ab9957 Mon Sep 17 00:00:00 2001 From: Guille Gonzalez Date: Sun, 16 Jun 2024 10:16:20 +0200 Subject: [PATCH] Fix format workflow --- .github/workflows/format.yml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 44ce7bd1..2fde8bcf 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -6,15 +6,13 @@ on: jobs: format: name: swift-format - runs-on: macos-12 + runs-on: macos-13 steps: - - uses: actions/checkout@v2 - - name: Select Xcode 14.2 - run: sudo xcode-select -s /Applications/Xcode_14.2.app - - name: Tap - run: brew tap pointfreeco/formulae + - uses: actions/checkout@v4 + - name: Select Xcode + run: sudo xcode-select -s /Applications/Xcode_15.0.app - name: Install - run: brew install Formulae/swift-format@5.7 + run: brew install swift-format - name: Format run: make format - uses: stefanzweifel/git-auto-commit-action@v4