Skip to content

Commit

Permalink
ci: use macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker committed Jan 24, 2024
1 parent f28f78a commit 4300984
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/npm_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ env:
jobs:
build:
name: Build
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
outputs:
npm_version: ${{ steps.npm_version_output.outputs.NPM_VERSION }}
npm_tag: ${{ steps.npm_version_output.outputs.NPM_TAG }}
Expand Down Expand Up @@ -68,7 +72,11 @@ jobs:
path: dist/dSYMs
test:
name: Test
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
needs: build
steps:
- uses: actions/checkout@v3
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ env:
jobs:
build:
name: Build
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -52,7 +56,11 @@ jobs:
path: dist/dSYMs
test:
name: Test
runs-on: macos-13
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
needs: build
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 4300984

Please sign in to comment.