chore(deps): update github.com/charmbracelet/ultraviolet digest to 6603726 #6
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: CI | |
| on: | |
| push: | |
| branches: | |
| - 3.x | |
| pull_request: | |
| branches: | |
| - 3.x | |
| jobs: | |
| ci: | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.26.x | |
| check-latest: true | |
| cache-dependency-path: "**/go.sum" | |
| - name: Tools cache | |
| uses: actions/cache@v5 | |
| env: | |
| cache-name: go-tools-cache | |
| with: | |
| path: .tools | |
| key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('./internal/tools/**') }} | |
| - name: Run CI checks | |
| run: make ci |