Skip to content

Update github-actions - #322

Merged
staabm merged 1 commit into
2.0.xfrom
renovate/github-actions
Aug 3, 2026
Merged

Update github-actions#322
staabm merged 1 commit into
2.0.xfrom
renovate/github-actions

Conversation

@renovate

@renovate renovate Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
TypedDevs/bashunit action minor 0.43.00.44.0
cbrgm/mastodon-github-action action patch v2.2.2v2.2.3
github/codeql-action action patch v4.37.3v4.37.4

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

TypedDevs/bashunit (TypedDevs/bashunit)

v0.44.0

Compare Source

Added
  • bashunit doc --custom lists the assertions your project defines, rendering the comment block above each one; plain bashunit doc appends them as a "Custom assertions" section. Needs --boot / BASHUNIT_BOOTSTRAP, which bashunit doc now accepts (#​918)
  • bashunit::assert_once <label> <actual> makes a composed assertion count and report once instead of once per inner step, under its own label. Opt-in, so existing totals are unchanged (#​917)
  • assert_assertion_passes, assert_assertion_fails and assert_assertion_fails_with <message> assert the verdict a custom assertion reports. The inner assertion runs isolated (counters, output and stop-on-failure guard restored), so testing a failing assertion no longer means rebuilding its expected output by hand (#​916)
  • bashunit::assert_that <expected> <actual> <cmd> [args...] writes a custom assertion in one call: it runs the command and marks the assertion passed or failed, so a forgotten return or bashunit::assertion_passed can no longer drift the two counters apart (#​915)
  • bashunit::assertion_failed takes an optional 4th argument labelling the failure block, so a custom assertion can name itself instead of showing the test name (#​915)
  • --snapshot-report-unused lists snapshot files no test resolved, the leftovers of a rename or deletion. Reports only, never deletes; refused on partial runs (#​902)
  • --no-snapshot-create / BASHUNIT_SNAPSHOT_CREATE=false fails on a missing snapshot instead of recording it. Recommended in CI, where a never-committed snapshot used to pass while asserting nothing (#​901)
  • --snapshot-update / BASHUNIT_SNAPSHOT_UPDATE=true re-records existing snapshots (combine with --filter); snapshots holding a placeholder are left alone (#​900)
  • bashunit::mock <cmd> <code>: a lone all-digits argument is an exit code, matching bashunit::spy; no throwaway return 1 helper needed (#​898)
  • assert_have_been_called_with_any <spy> <expected>: passes when any recorded call matches, not only the last one (#​897)
  • A failed call assertion prints the calls recorded for that spy, capped at 10 with an explicit … and N more (#​896)
  • assert_have_been_called_with_args <spy> <arg>...: compares the recorded arguments one by one, so cmd "a b" no longer matches cmd a b (#​894)
  • BASHUNIT_COVERAGE_ENGINE=auto|xtrace|trap: a new xtrace engine, ~4x cheaper per captured line. Needs Bash 4.1+, so auto (the default) falls back to trap below that (#​860)
  • BASHUNIT_COVERAGE_SHOW_LINE_HITS=true prints per-line execution counts in the text coverage report (#​856)
  • Docs: an Agentic coding page, linked llms.txt / llms-full.txt, and a drop-in agent skill at bashunit.com/bashunit-skill.md
  • Docs: Nix as an install option, since bashunit is in nixpkgs (nix-shell -p bashunit, nix run nixpkgs#bashunit)
Changed
  • A failed assert_have_been_called_with / _with_args states which call it compared (compared 'the last of 2 calls') (#​897)
  • Deprecated forms warn at runtime on stderr; silence with BASHUNIT_NO_DEPRECATION_WARNINGS=true (#​866)
  • bashunit::state::print_line / print_tap_line moved to bashunit::console_results::*; no alias kept (#​868)
  • bashunit doc and the Assertions page now cover all 71 assertions, with a quick-reference table
  • The --parallel unsupported-OS warning no longer claims Alpine is excluded
  • Docs: bashunit::unmock and the lifecycle of a double: automatic per-test cleanup, set_up_before_script doubles, and what unmock reaches (#​899)
  • Docs: invalid-input handling, BASHUNIT_REPORT_TAP/BASHUNIT_REPORT_JSON, the standalone exit code, and the optional ["snapshot_file"] argument
  • Docs: the sidebar outline now lists h3 headings
Fixed
  • Failure and snapshot diffs render with --no-ext-diff, so a configured diff.external (difftastic) no longer blanks them (#​912)
  • Time reads and the JUnit report pass the locale via env; the LC_ALL=C cmd prefix segfaults inside $() on Bash 5.3 macOS (#​912)
  • Call assertions (assert_not_called, assert_have_been_called*) fail with was never registered as a spy instead of reporting zero calls when the name was never spied, so a typo no longer passes silently (#​895)
  • The per-argument form a spy records held a literal $'\x1f' string instead of the separator byte, so it could not be compared against (#​894)
  • --parallel no longer discards worker stderr written outside a test body; it renders as a Stderr from <file> block (#​864)
  • The minimum-bash gate compares the minor version and parses suffixed versions; the floor is unchanged at Bash 3.0+
  • An empty entry in .env no longer blanks a value the caller exported or passed on the command line (#​865)
  • Malformed benchmark annotations (@revs, @its, @max_ms) error instead of silently falling back, and @max_ms accepts a decimal value (#​884)
  • An unknown option is rejected instead of being treated as a test path (#​871)
  • --jobs, --retry, --test-timeout, --coverage-min and --output reject invalid values; --jobs abc used to hang (#​873)
  • A missing --env/--boot file errors instead of a green run that tested nothing; report paths and --seed are validated too (#​875)
  • BASHUNIT_COVERAGE_THRESHOLD_LOW/BASHUNIT_COVERAGE_THRESHOLD_HIGH validate as non-negative integers
  • bashunit assert <name> with no arguments errors instead of exiting 0 (#​877)
  • The exit-code assertions fail closed on a non-integer exit code, which used to count as passed
  • Variadic assertions with the actual value omitted fail cleanly on Bash 3.2 under --strict
  • assert_arrays_equal failing outside a test function shows its real label
  • Scratch directories that cannot be created under TMPDIR abort with an actionable error
  • A set_up_before_script that changes directory no longer drops the remaining test files
  • A test path combining a glob and a space (./bashunit "my tests/*") is no longer word-split
  • An unreadable or truncated parallel .result file counts as a failed test instead of aborting aggregation
  • release.sh reports a failed rollback as failed
  • Docs: the quickstart's duration format, and the real BASHUNIT_SHOW_EXECUTION_TIME default (auto)
Removed
  • bin/create-pr, an unreferenced vendored copy of Chemaclass/create-pr; use the upstream tool (#​867)
  • Dead internal helpers with no remaining callers
cbrgm/mastodon-github-action (cbrgm/mastodon-github-action)

v2.2.3

Compare Source

What's Changed

Full Changelog: cbrgm/mastodon-github-action@v2...v2.2.3

github/codeql-action (github/codeql-action)

v4.37.4

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


- name: "Install bashunit"
uses: "TypedDevs/bashunit@3914514a7104f9a2774be63510b022fb50ab5905" # 0.43.0
uses: "TypedDevs/bashunit@94933c088b0719e0c4cf5e3147dad67f713b970d" # 0.44.0
egress-policy: audit

- uses: cbrgm/mastodon-github-action@ac2d8e8c9986a17b824dd12dd9df4ce5fcd813c1 # v2.2.2
- uses: cbrgm/mastodon-github-action@7fcc3650150fc062d707eeffb50e8f7a2704fd0f # v2.2.3
@staabm
staabm merged commit af0694d into 2.0.x Aug 3, 2026
97 checks passed
@renovate
renovate Bot deleted the renovate/github-actions branch August 3, 2026 05:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants