Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use macos-14 runner, update dependencies #133

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
- os: windows-2019
target: x86_64-pc-windows-msvc
arch: x64
- os: [self-hosted, macOS, ARM64]
- os: macos-14
target: aarch64-apple-darwin
arch: arm64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}${{ github.event.inputs.name }}
- uses: c-hive/gha-yarn-cache@v1
- uses: actions/setup-node@v2.1.5
- uses: c-hive/gha-yarn-cache@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
architecture: ${{ matrix.system.arch }}
Expand Down Expand Up @@ -102,10 +102,10 @@ jobs:
- run: |
apk add gcompat
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}${{ github.event.inputs.name }}
- uses: c-hive/gha-yarn-cache@v1
- uses: c-hive/gha-yarn-cache@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.release.tag_name }}
- uses: actions/setup-node@v2.1.5
- uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/typescript-napi-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
- os: windows-2019
target: x86_64-pc-windows-msvc
arch: x64
- os: [self-hosted, macOS, ARM64]
- os: macos-14
target: aarch64-apple-darwin
arch: arm64
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: yarn
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
apk add gcompat
sed -i "s:ID=alpine:ID=NotpineForGHA:" /etc/os-release
- run: echo RUSTFLAGS="-C target-feature=-crt-static" >> "${GITHUB_ENV}"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
Loading
Loading