Skip to content

Choose a tag to compare

@sairenchristianbuerano sairenchristianbuerano released this 27 May 00:32
· 43 commits to main since this release

Patch release. Single bug fix for branch resolution on remote URL targets.

v0.1.1

Fixed

  • Branch row showed unknown for https://github.com/OWNER/NAME targets. The resolver only inspected local checkouts, so URL-based scans had no signal to read. v0.1.1 calls gh api repos/OWNER/NAME --jq .default_branch using the runner's ${{ github.token }} and shows the remote's default branch — the same one trustabl actually clones and scans.

Local-path targets still prefer mainmaster → HEAD. unknown remains the documented last-resort.

Usage

name: Trustabl
on: [push, pull_request]

permissions:
  contents: read

jobs:
  scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: trustabl/actions@v0.1.1