Skip to content

Commit

Permalink
Use explicit rust version for proper control in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumEntangledAndy committed Oct 26, 2024
1 parent 1517077 commit fb9df1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ jobs:
echo "${HOME}/.cargo/bin" >> "${GITHUB_PATH}"
- name: Install ${{ matrix.arch }} Rust toolchain
run: |
rustup default 1.84.0
rustup target add ${TARGET}
env:
TARGET: ${{ matrix.target }}
Expand Down Expand Up @@ -282,8 +283,9 @@ jobs:
echo "TAGS=${tagstr}" >> "${GITHUB_OUTPUT}"
env:
REPO_NAME: ${{ steps.docker_repo.outputs.DOCKER_NWO }}
- name: Install latest rust
- name: Install rust
run: |
rustup default 1.84.0
rustup toolchain install stable
- name: Install toml-cli
run: |
Expand Down Expand Up @@ -341,8 +343,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install latest rust
- name: Install rust
run: |
rustup default 1.84.0
rustup toolchain install stable
- name: Install toml-cli
run: |
Expand Down

0 comments on commit fb9df1d

Please sign in to comment.