From 94097de21ee0f8d37132f710876ca2f7f3842d36 Mon Sep 17 00:00:00 2001 From: Yurii Samsoniuk Date: Sat, 14 Oct 2023 22:20:44 +0200 Subject: [PATCH] Use macOS Sonoma 14.0 and Swift 5.9 to run GitHub Actions --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0181983..3462b8c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,15 +11,15 @@ on: jobs: build: - runs-on: macos-12 + runs-on: macos-14 steps: - uses: actions/checkout@v2 - name: Setup Swift - uses: swift-actions/setup-swift@v1.15.0 + uses: swift-actions/setup-swift@v1.25.0 with: - swift-version: "5.6" + swift-version: "5.9" - name: Create workflow archive run: make diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa91e68..56e716e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,15 +9,15 @@ on: jobs: build: - runs-on: macos-12 + runs-on: macos-14 steps: - uses: actions/checkout@v2 - name: Setup Swift - uses: swift-actions/setup-swift@v1.15.0 + uses: swift-actions/setup-swift@v1.25.0 with: - swift-version: "5.6" + swift-version: "5.9" - name: Run test run: make test