Skip to content

Commit

Permalink
CI: update to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas committed May 13, 2024
1 parent cf4ca82 commit 1a5e2f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check that changelog updated
uses: dangoslen/changelog-enforcer@v3
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update stable && rustup default stable
- name: Install C libraries for tooling on ubuntu
Expand All @@ -36,7 +36,7 @@ jobs:
cross:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update stable && rustup default stable
- name: Install Rust targets, build defmt crates for no_std targets, build defmt dependent crates for cortex-m targets, build panic-probe with different features
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update stable && rustup default stable
- name: Run rustfmt & clippy
Expand All @@ -55,7 +55,7 @@ jobs:
ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update stable && rustup default stable
- name: Install Rust stable, run all UI tests on the host
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update stable && rustup default stable
- name: Setup mdBook
Expand All @@ -83,7 +83,7 @@ jobs:
# - nightly # some tests use unstable features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable release
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Install QEMU_TARGET
Expand All @@ -96,7 +96,7 @@ jobs:
backcompat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use the latest stable release
Expand Down

0 comments on commit 1a5e2f8

Please sign in to comment.