fix: specify github source for actions-rs

This commit is contained in:
Chance 2025-04-10 22:53:22 -04:00 committed by BitSyndicate
parent f66e440fa3
commit ea2a05fb39
Signed by: bitsyndicate
GPG key ID: 443E4198D6BBA6DE
2 changed files with 2 additions and 2 deletions

View file

@ -55,14 +55,14 @@ jobs:
echo "PKG_CONFIG_SYSROOT_DIR=/usr/${{ matrix.triple }}" >> $GITHUB_ENV
- name: 🦀 Install Rust target
uses: actions-rs/toolchain@v1
uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: 🏗️ Build
uses: actions-rs/cargo@v1
uses: https://github.com/actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}