-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ae5166
commit e913aad
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ jobs: | |
quick-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/checkout@v4.2.1 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
|
@@ -22,7 +22,7 @@ jobs: | |
needs: quick-tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/checkout@v4.2.1 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
|
@@ -39,7 +39,7 @@ jobs: | |
compile-examples: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/checkout@v4.2.1 | ||
- name: Compile examples for ARM v7 | ||
uses: houseabsolute/[email protected] | ||
with: | ||
|
@@ -59,9 +59,9 @@ jobs: | |
- name: Run USB management script | ||
run: /etc/github_runner/ci_management.sh | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4.2.1 | ||
- name: Download compiled examples | ||
uses: actions/download-artifact@v4 | ||
uses: actions/download-artifact@v4.1.8 | ||
with: | ||
name: examples-armv7 | ||
path: ./examples | ||
|
@@ -88,7 +88,7 @@ jobs: | |
if: startsWith(github.ref, 'refs/tags/') | ||
steps: | ||
- name: Checkout to repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4.2.1 | ||
with: | ||
submodules: recursive | ||
- name: Setup Rust toolchain | ||
|