Skip to content

Commit

Permalink
Merge pull request #107 from square/entin/actions-node16
Browse files Browse the repository at this point in the history
Update actions in CI workflow to versions using node16
  • Loading branch information
NickEntin authored Jan 22, 2024
2 parents c7bdd87 + fa3cfcc commit 98655c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_13.2.1.app/Contents/Developer
- name: Prepare Simulator Runtimes
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Build and Test
run: Scripts/build.swift xcode ${{ matrix.platform }} `which xcpretty`
- name: Upload Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: Test Results
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: macOS-12
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Bundle Install
run: bundle install
- name: Select Xcode Version
Expand All @@ -54,7 +54,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Select Xcode Version
run: sudo xcode-select --switch /Applications/Xcode_14.1.app/Contents/Developer
- name: Prepare Simulator Runtimes
Expand All @@ -66,6 +66,6 @@ jobs:
runs-on: macOS-12
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build and Test
run: bazel test //...

0 comments on commit 98655c8

Please sign in to comment.