Directly install protobuf-compiler without using an external action (#524)

* Directly install protobuf-compiler without using an external action

* Remove unused "github-token" input
This commit is contained in:
Luke Parker
2024-01-31 19:21:26 -05:00
committed by GitHub
parent 05219c3ce8
commit 2b76e41c9a
15 changed files with 1 additions and 51 deletions

View File

@@ -1,12 +1,6 @@
name: build-dependencies
description: Installs build dependencies for Serai
inputs:
github-token:
description: "GitHub token to install Protobuf with"
require: true
default:
runs:
using: "composite"
steps:
@@ -26,17 +20,11 @@ runs:
shell: bash
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt install -y ca-certificates
sudo apt install -y ca-certificates protobuf-compiler
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install protoc
fi
- name: Install Protobuf
uses: arduino/setup-protoc@a8b67ba40b37d35169e222f3bb352603327985b6
with:
repo-token: ${{ inputs.github-token }}
if: runner.os == 'Linux'
- name: Install solc
shell: bash
run: |