mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-16 12:55:23 +01:00
chore(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
641a54af4b
commit
fbd472ec06
4 changed files with 16 additions and 16 deletions
2
.github/workflows/audit.yaml
vendored
2
.github/workflows/audit.yaml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
||||||
security_audit:
|
security_audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- run: cargo generate-lockfile # create Cargo.lock
|
- run: cargo generate-lockfile # create Cargo.lock
|
||||||
- uses: rustsec/audit-check@v2.0.0
|
- uses: rustsec/audit-check@v2.0.0
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
22
.github/workflows/build.yml
vendored
22
.github/workflows/build.yml
vendored
|
|
@ -26,7 +26,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Cache Dependencies
|
- name: Cache Dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
|
@ -84,7 +84,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Cache QEMU
|
- name: Cache QEMU
|
||||||
id: cache-qemu
|
id: cache-qemu
|
||||||
|
|
@ -152,7 +152,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure Rust target ${{ matrix.input.rustup-target }}
|
- name: Configure Rust target ${{ matrix.input.rustup-target }}
|
||||||
run: rustup target add ${{ matrix.input.rustup-target }}
|
run: rustup target add ${{ matrix.input.rustup-target }}
|
||||||
|
|
@ -228,7 +228,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Cache Dependencies
|
- name: Cache Dependencies
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
|
@ -248,7 +248,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Run cargo test
|
- name: Run cargo test
|
||||||
run: cargo xtask --deny-warnings test --loom rtic-sync
|
run: cargo xtask --deny-warnings test --loom rtic-sync
|
||||||
|
|
@ -259,7 +259,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install lychee
|
- name: Install lychee
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
@ -310,7 +310,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install lychee
|
- name: Install lychee
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
@ -365,7 +365,7 @@ jobs:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install mdbook
|
- name: Install mdbook
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
@ -443,7 +443,7 @@ jobs:
|
||||||
versionmajor: ${{ steps.parseversion.outputs.versionmajor }}
|
versionmajor: ${{ steps.parseversion.outputs.versionmajor }}
|
||||||
version: ${{ steps.parseversion.outputs.version }}
|
version: ${{ steps.parseversion.outputs.version }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Get crate version and print output branch release/vX
|
- name: Get crate version and print output branch release/vX
|
||||||
id: parseversion
|
id: parseversion
|
||||||
|
|
@ -480,7 +480,7 @@ jobs:
|
||||||
# Only run this when pushing to master branch
|
# Only run this when pushing to master branch
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Push to stable release branch if master contains stable version
|
- name: Push to stable release branch if master contains stable version
|
||||||
if: ${{ env.versionmajor == env.STABLE_VERSION }}
|
if: ${{ env.versionmajor == env.STABLE_VERSION }}
|
||||||
|
|
@ -510,7 +510,7 @@ jobs:
|
||||||
# Only run this when pushing to master branch
|
# Only run this when pushing to master branch
|
||||||
if: github.ref == 'refs/heads/master'
|
if: github.ref == 'refs/heads/master'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Install lychee
|
- name: Install lychee
|
||||||
uses: taiki-e/install-action@v2
|
uses: taiki-e/install-action@v2
|
||||||
|
|
|
||||||
2
.github/workflows/changelog.yml
vendored
2
.github/workflows/changelog.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Check which component is modified
|
- name: Check which component is modified
|
||||||
uses: dorny/paths-filter@v3
|
uses: dorny/paths-filter@v3
|
||||||
|
|
|
||||||
6
.github/workflows/clippy-check-example.yml
vendored
6
.github/workflows/clippy-check-example.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
||||||
name: Validate platform ${{ inputs.platform }}, backend ${{ inputs.backend }}
|
name: Validate platform ${{ inputs.platform }}, backend ${{ inputs.backend }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure Rust target ${{ inputs.rustup-target }}
|
- name: Configure Rust target ${{ inputs.rustup-target }}
|
||||||
run: rustup target add ${{ inputs.rustup-target }}
|
run: rustup target add ${{ inputs.rustup-target }}
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
name: Check examples
|
name: Check examples
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure Rust target ${{ inputs.rustup-target }}
|
- name: Configure Rust target ${{ inputs.rustup-target }}
|
||||||
run: rustup target add ${{ inputs.rustup-target }}
|
run: rustup target add ${{ inputs.rustup-target }}
|
||||||
|
|
@ -60,7 +60,7 @@ jobs:
|
||||||
name: Run clippy
|
name: Run clippy
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Configure Rust target ${{ inputs.rustup-target }}
|
- name: Configure Rust target ${{ inputs.rustup-target }}
|
||||||
run: rustup target add ${{ inputs.rustup-target }}
|
run: rustup target add ${{ inputs.rustup-target }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue