chore(deps): bump the patch group across 1 directory with 5 updates #4179
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Integration | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - staging # for bors | |
| - trying # for bors | |
| schedule: | |
| - cron: "0 0 * * 0" | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Cache Cargo dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2 | |
| - name: Check | |
| uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3 | |
| with: | |
| command: check | |
| args: --locked --verbose | |
| - name: Check without default features | |
| uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3 | |
| with: | |
| command: check | |
| args: --locked --no-default-features --verbose | |
| typos: | |
| name: Typos | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Check typos | |
| uses: crate-ci/typos@02ea592e44b3a53c302f697cddca7641cd051c3d # master | |
| test: | |
| name: Test suite | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@b95584d8105b9ab200e15821fa671848cf2b7017 # nightly | |
| - name: Checkout | |
| if: github.event_name != 'pull_request' | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Checkout | |
| if: github.event_name == 'pull_request' | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Cache Cargo dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2 | |
| - name: Setup cargo-tarpaulin | |
| uses: taiki-e/install-action@db542c1ee140717096741d8188a70ff7cb9efb87 # cargo-tarpaulin | |
| - name: Run tests | |
| run: | | |
| cargo test --no-default-features \ | |
| -- --skip "repo::test::git_upstream_remote" | |
| - name: Run tests | |
| run: | | |
| cargo tarpaulin --out xml --verbose --all-features \ | |
| -- --skip "repo::test::git_upstream_remote" | |
| - name: Upload reports to codecov | |
| if: github.actor != 'dependabot[bot]' | |
| uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1 | |
| with: | |
| name: code-coverage-report | |
| files: cobertura.xml | |
| flags: unit-tests | |
| fail_ci_if_error: true | |
| verbose: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| clippy: | |
| name: Lints | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@b95584d8105b9ab200e15821fa671848cf2b7017 # nightly | |
| with: | |
| components: clippy | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Cache Cargo dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2 | |
| - name: Check the lints | |
| uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3 | |
| with: | |
| # Lints are configured via CLI arguments to avoid confusion with Cargo.toml precedence. | |
| command: clippy | |
| args: --tests --verbose -- -D warnings | |
| - name: Check the pedantic lints | |
| uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3 | |
| with: | |
| # Lints are configured via CLI arguments to avoid confusion with Cargo.toml precedence. | |
| command: clippy | |
| args: > | |
| --all-targets --verbose -- -W clippy::pedantic | |
| -A clippy::needless_for_each | |
| -A clippy::redundant_else | |
| -A clippy::format_push_string | |
| rustfmt: | |
| name: Formatting | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@b95584d8105b9ab200e15821fa671848cf2b7017 # nightly | |
| with: | |
| toolchain: nightly | |
| components: rustfmt | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Check the formatting | |
| run: cargo +nightly fmt --all -- --check --verbose | |
| doctest: | |
| name: Doctests | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@b95584d8105b9ab200e15821fa671848cf2b7017 # nightly | |
| with: | |
| components: rustfmt | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Cache Cargo dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2 | |
| - name: Check the formatting | |
| uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3 | |
| with: | |
| command: test | |
| args: --doc | |
| lychee: | |
| name: Links | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Check website links | |
| uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0 | |
| with: | |
| args: > | |
| -v | |
| --config lychee.toml | |
| --root-dir website | |
| website/docs/* website/blog/* | |
| fail: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Check root markdown links | |
| uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0 | |
| with: | |
| args: > | |
| -v | |
| --config lychee.toml | |
| *.md | |
| fail: true | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| msrv: | |
| name: Check Rust version | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install cargo-binstall | |
| uses: taiki-e/install-action@f45419ef14ff13c4459e1c4310c1ff046eff6b30 # cargo-binstall | |
| - name: Install cargo-msrv | |
| run: cargo binstall -y cargo-msrv | |
| - name: Run cargo-msrv | |
| shell: bash | |
| run: | | |
| for package in "git-cliff" "git-cliff-core"; do | |
| printf "Checking MSRV for $package..." | |
| cargo msrv --output-format json --path "$package" verify | tail -n 1 | jq --exit-status '.success' | |
| done | |
| tarball: | |
| name: Check NodeJS tarball | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install node | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: 18 | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Validate the files in the tarball | |
| shell: bash | |
| working-directory: npm/git-cliff | |
| run: | | |
| yarn install | |
| yarn build | |
| cp ../../README.md . | |
| cp ../../CHANGELOG.md . | |
| files_expected_in_tarball=( | |
| "CHANGELOG.md" | |
| "README.md" | |
| "lib/cjs/index.cjs" | |
| "lib/cjs/index.cjs.map" | |
| "lib/cjs/index.d.cts" | |
| "lib/cli/cli.js" | |
| "lib/esm/index.d.ts" | |
| "lib/esm/index.js" | |
| "lib/esm/index.js.map" | |
| "package.json" | |
| ) | |
| tarball_output=$(yarn pack --dry-run) | |
| for file in "${files_expected_in_tarball[@]}"; do | |
| if [[ ! "$tarball_output" == *"$file"* ]]; then | |
| echo "Error: Expected file '$file' not found in tarball." | |
| exit 1 | |
| fi | |
| done | |
| profiler: | |
| name: Run profiler | |
| runs-on: ubuntu-22.04 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install toolchain | |
| uses: dtolnay/rust-toolchain@4305c38b25d97ef35a8ad1f985ccf2d2242004f2 # stable | |
| - name: Cache Cargo dependencies | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2 | |
| - name: Run profiler | |
| run: cargo run --profile bench --features profiler -- --no-exec | |
| - name: Upload report | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 | |
| with: | |
| name: git-cliff.${{ github.run_id }}-profiler-report | |
| path: git-cliff.**.flamegraph.svg | |
| nix-flake: | |
| name: Build Nix flake | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Install Nix | |
| uses: nixbuild/nix-quick-install-action@2c9db80fb984ceb1bcaa77cdda3fdf8cfba92035 # v34 | |
| - name: Restore and cache Nix store | |
| uses: nix-community/cache-nix-action@7df957e333c1e5da7721f60227dbba6d06080569 # v7.0.2 | |
| with: | |
| primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }} | |
| restore-prefixes-first-match: nix-${{ runner.os }}- | |
| gc-max-store-size-linux: 1073741824 | |
| purge: false | |
| - name: Check Nix flake | |
| run: nix flake check --all-systems -Lv --show-trace |