Skip to content

Commit 52c9014

Browse files
authored
Merge pull request #95 from approvers/fix-actions-build
fix: ructions 削除で動かなくなった Actions を修復
2 parents a0d3177 + 2c81031 commit 52c9014

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
timeout-minutes: 40
1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: ructions/toolchain@v2
16+
- id: parse-toolchain
17+
run: cat ./rust-toolchain.toml | awk '/channel = / { print $3 }' | xargs -I% echo spec=% >> $GITHUB_OUTPUT
18+
- uses: dtolnay/rust-toolchain@master
19+
with:
20+
toolchain: ${{ steps.parse-toolchain.outputs.spec }}
1721
- uses: Swatinem/rust-cache@v2
1822
- name: install native deps
1923
run: sudo apt update && sudo apt install clang llvm pkg-config nettle-dev

0 commit comments

Comments
 (0)