Skip to content

chore(deps): bump thiserror from 1.0.63 to 1.0.64 #164

chore(deps): bump thiserror from 1.0.63 to 1.0.64

chore(deps): bump thiserror from 1.0.63 to 1.0.64 #164

Workflow file for this run

---
permissions:
contents: read
"on":
push:
branches: [main]
pull_request:
schedule:
- cron: '7 7 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: rolling
jobs:
nightly:
runs-on: ubuntu-latest
name: ubuntu / nightly
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install nightly
uses: dtolnay/rust-toolchain@nightly
- name: cargo generate-lockfile
if: hashFiles('Cargo.lock') == ''
run: cargo generate-lockfile
- name: cargo test --locked
run: cargo test --locked --all-features --all-targets
# Check that updating the dependencies of this crate to the latest available
# that satisfy the versions in Cargo.toml does not break this crate.
update:
runs-on: ubuntu-latest
name: ubuntu / beta / updated
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install beta
if: hashFiles('Cargo.lock') != ''
uses: dtolnay/rust-toolchain@beta
- name: cargo update
if: hashFiles('Cargo.lock') != ''
run: cargo update
- name: cargo test
if: hashFiles('Cargo.lock') != ''
run: cargo test --locked --all-features --all-targets
env:
RUSTFLAGS: -D deprecated