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
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Cache QEMU
id: cache-qemu
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Configure Rust target ${{ matrix.input.rustup-target }}
run: rustup target add ${{ matrix.input.rustup-target }}
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
Expand All @@ -246,7 +246,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Run cargo test
run: cargo xtask --deny-warnings test --loom rtic-sync
Expand All @@ -257,7 +257,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install lychee
uses: taiki-e/install-action@v2
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install lychee
uses: taiki-e/install-action@v2
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install mdbook
uses: taiki-e/install-action@v2
Expand Down Expand Up @@ -441,7 +441,7 @@ jobs:
versionmajor: ${{ steps.parseversion.outputs.versionmajor }}
version: ${{ steps.parseversion.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get crate version and print output branch release/vX
id: parseversion
Expand Down Expand Up @@ -478,7 +478,7 @@ jobs:
# Only run this when pushing to master branch
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Push to stable release branch if master contains stable version
if: ${{ env.versionmajor == env.STABLE_VERSION }}
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
# Only run this when pushing to master branch
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install lychee
uses: taiki-e/install-action@v2
Expand Down
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@v4
uses: actions/checkout@v5

- name: Check which component is modified
uses: dorny/paths-filter@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/clippy-check-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Validate platform ${{ inputs.platform }}, backend ${{ inputs.backend }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Configure Rust target ${{ inputs.rustup-target }}
run: rustup target add ${{ inputs.rustup-target }}
Expand All @@ -44,7 +44,7 @@ jobs:
name: Check examples
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Configure Rust target ${{ inputs.rustup-target }}
run: rustup target add ${{ inputs.rustup-target }}
Expand All @@ -60,7 +60,7 @@ jobs:
name: Run clippy
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Configure Rust target ${{ inputs.rustup-target }}
run: rustup target add ${{ inputs.rustup-target }}
Expand Down