Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Oct 19, 2023
1 parent 847c1c7 commit c23ec42
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
target: armv7a-none-eabi

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Rust toolchain
run: rustup default ${{ matrix.rust }}
- name: Install Rust targets
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust targets
run: rustup target add ${{ matrix.target }}
- name: Build crate
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust targets
run: rustup target add riscv64imac-unknown-none-elf
- uses: katyo/publish-crates@v2
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust targets
run: rustup target add armv7a-none-eabi
- uses: katyo/publish-crates@v2
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust targets
run: rustup target add thumbv8m.main-none-eabi
- uses: katyo/publish-crates@v2
Expand All @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust targets
run: rustup target add armv7a-none-eabi
- uses: katyo/publish-crates@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
name: Rustfmt
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check fmt
run: cargo fmt --all --check

0 comments on commit c23ec42

Please sign in to comment.