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

Bump deno version #1276

Merged
merged 4 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,14 @@ jobs:
with:
fetch-depth: 0

- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: |
curl https://sh.rustup.rs -sSf \
Expand Down
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal -c clippy

Expand All @@ -53,6 +61,14 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal

Expand All @@ -68,6 +84,14 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Oldstable
run: |
oldstable=$(cat "./cli/Cargo.toml" | grep "rust-version" | sed 's/.*"\(.*\)".*/\1/')
Expand All @@ -85,6 +109,14 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- if: ${{ runner.os == 'macOS' }}
name: Install protoc
run: brew install cmake protobuf

- if: ${{ runner.os == 'Linux' }}
name: Install protoc
run: sudo apt install -y protobuf-compiler

- name: Install Rust toolchain
run: rustup toolchain install --no-self-update stable --profile minimal

Expand Down
Loading