From 2d91540465a4d14d92ee7e34c3b504518f3e53d8 Mon Sep 17 00:00:00 2001 From: Marz Rover Date: Fri, 6 Sep 2024 19:12:11 -0400 Subject: [PATCH] fix actions --- .github/workflows/macOS.yml | 4 ++-- .github/workflows/ubuntu.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index ca8aa37..a3a4d52 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -16,9 +16,9 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Swift - uses: fwal/setup-swift@v1.14.0 + uses: swift-actions/setup-swift@v2 - name: Build run: swift build -v - name: Run tests diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c535e0e..c0023de 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -16,9 +16,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Swift - uses: fwal/setup-swift@v1.14.0 + uses: swift-actions/setup-swift@v2 - name: Build run: swift build -v - name: Run tests