From 7841389b795260c2ad2f848a3d52e7e647dca38a Mon Sep 17 00:00:00 2001 From: Jax DesMarais-Leder Date: Tue, 8 Oct 2024 13:04:26 -0500 Subject: [PATCH] move all workflows to github actions v4 (#1427) --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/swiftlint.yml | 2 +- .github/workflows/tests.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 169e7d2bc6..2f92182dee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -24,7 +24,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.ref }} @@ -51,7 +51,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9d4d199f70..677cf0e726 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index 81504daa1e..2fda0bfada 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -9,7 +9,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Use Xcode 15.0.1 run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app - name: Install SwiftLint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8715aeb9d2..e4c82b9c06 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -26,7 +26,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -41,7 +41,7 @@ jobs: runs-on: macOS-14-xlarge steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }}