Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-ferrocene.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
sudo apt-get update -y && sudo apt-get -y install gcc-arm-none-eabi
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrocene/criticalup/releases/download/v1.0.1/criticalup-installer.sh | sh
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install Ferrocene
Expand All @@ -40,7 +40,7 @@ jobs:
cargo --version
cargo build --target=thumbv7em-none-eabihf --release
- name: Upload nrf52-app
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v7
with:
name: nrf52-app
path: nrf52-app/target/thumbv7em-none-eabihf/release/nrf52-app
Expand All @@ -52,7 +52,7 @@ jobs:
sudo apt-get update -y && sudo apt-get -y install gcc-arm-none-eabi
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/ferrocene/criticalup/releases/download/v1.0.1/criticalup-installer.sh | sh
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install Ferrocene
Expand All @@ -79,7 +79,7 @@ jobs:
cargo --version
cargo build --target=armv7r-none-eabihf --release
- name: Upload QEMU Cortex-R5 App
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v7
with:
name: qemu-cortex-r5-app
path: qemu-cortex-r5-app/target/armv7r-none-eabihf/release/qemu-cortex-r5-app
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
tool: flip-link@0.1.7
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Add rustup target
Expand All @@ -36,7 +36,7 @@ jobs:
cd nrf52-app
cargo build --target=thumbv7em-none-eabihf --release
- name: Upload nrf52-app
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v7
with:
name: nrf52-app
path: nrf52-app/target/thumbv7em-none-eabihf/release/nrf52-app
Expand All @@ -47,7 +47,7 @@ jobs:
run: |
sudo apt-get update -y && sudo apt-get -y install gcc-arm-none-eabi
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Add rustup target
Expand All @@ -67,7 +67,7 @@ jobs:
cd qemu-cortex-r5-app
cargo build --target=armv7r-none-eabihf --release
- name: Upload qemu-cortex-r5-app
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v7
with:
name: qemu-cortex-r5-app
path: qemu-cortex-r5-app/target/armv7r-none-eabihf/release/qemu-cortex-r5-app
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install tools
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install tools
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Check Formatting on nRF52 App
run: |
cd nrf52-app
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Check Formatting on QEMU Cortex-R5 App
run: |
cd qemu-cortex-r5-app
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Check Formatting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install tools
run: |
pipx install reuse
Expand Down