Skip to content

chore(deps): update all non-major dependencies #2319

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #2319

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
schedule: [cron: "40 1 * * *"]
name: Check MSRV of backhand
jobs:
build-test-backhand:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of backhand
- 1.86
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo +${{ matrix.toolchain }} check --locked -p backhand
build-test-backhand-cli:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
toolchain:
# msrv of backhand-cli
- 1.86
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo +${{ matrix.toolchain }} check --locked -p backhand-cli