chore(deps): update dependency go to v1.26.3 #71
Workflow file for this run
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: brew-audit | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| schedule: | |
| # 毎週月曜 09:00 JST = 00:00 UTC | |
| - cron: '0 0 * * 1' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit: | |
| runs-on: macos-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Show Homebrew version | |
| run: brew --version | |
| - name: Tap tqer39/homebrew-tap | |
| run: brew tap tqer39/tap | |
| # `--strict` は次の release(goreleaser test テンプレートが `bin/"ccw"` | |
| # 形式に修正される)以降に再有効化する。それまでは `--online` のみで | |
| # URL 到達性・sha256 一致・syntax を検証する。 | |
| - name: Audit formula (online) | |
| run: brew audit --online tqer39/tap/ccw | |
| - name: Install from source | |
| run: brew install --build-from-source tqer39/tap/ccw | |
| - name: Run formula test block | |
| run: brew test tqer39/tap/ccw | |
| - name: Show installed binary version | |
| run: ccw -v |