Skip to content

Commit

Permalink
attempt to fix the github token issues with protoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmurariu committed Jul 4, 2024
1 parent 390e96e commit cab994a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/_release_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Install Protoc
uses: arduino/setup-protoc@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- run: |
git config --global user.email "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
run: rustup update
- name: Install Protoc
uses: arduino/setup-protoc@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cargo cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_rust_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Install Protoc
uses: arduino/setup-protoc@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: webfactory/[email protected]
name: Load pometry-storage key
with:
Expand Down Expand Up @@ -86,8 +86,8 @@ jobs:
components: rustfmt, clippy
- name: Install Protoc
uses: arduino/setup-protoc@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: Swatinem/rust-cache@v2
name: Cargo cache
with:
Expand Down

0 comments on commit cab994a

Please sign in to comment.