From 1c0fbe02db0e09a2ad9c9dabe58dcb372051e9ea Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Sat, 22 Apr 2023 15:56:42 -0700 Subject: [PATCH] Upgrade actions/checkout to v3 --- .github/workflows/macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index fb04adf..4fe6f5c 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -5,7 +5,7 @@ jobs: runs-on: macos-12 steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build Executable run: swift build -c release --arch arm64 --arch x86_64 - name: Copy Executable @@ -19,13 +19,13 @@ jobs: runs-on: macos-12 steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Swift Format run: swiftformat --lint Package.swift Sources lint: runs-on: macos-12 steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Swift Lint run: swiftlint Package.swift Sources