Skip to content

Commit

Permalink
Fix some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bkchr committed Jan 17, 2025
1 parent a3232d3 commit a6e6755
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/check-migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,8 @@ jobs:
echo "EXTRA_FLAGS=$EXTRA_FLAGS" >> $GITHUB_ENV
echo "CHECKS=$CHECKS" >> $GITHUB_ENV
- name: Install Protoc
uses: arduino/[email protected]
with:
version: "3.6.1"
- name: Install updates and dependencies
run: .github/install-deps.sh

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Install updates and dependencies
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ jobs:

- name: Install updates and dependencies
if: startsWith(github.event.comment.body, '/cmd bench')
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v4

- name: Install updates and dependencies
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
uses: actions/checkout@v4

- name: Install updates and dependencies
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
uses: actions/checkout@v4

- name: Install updates and dependencies
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
uses: actions/checkout@v4

- name: Install updates and dependencies
run: ./github/install-deps.sh
run: .github/install-deps.sh

- name: Set rust version via common env file
run: cat .github/env >> $GITHUB_ENV
Expand Down

0 comments on commit a6e6755

Please sign in to comment.