chore(deps): bump github.com/charmbracelet/colorprofile from 0.1.10-0.20250125232710-602ea259b0c8 to 0.2.0 in /examples #302
Workflow file for this run
This file contains 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
# auto-generated by scripts/builds. DO NOT EDIT. | |
name: examples | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- examples/** | |
- .github/workflows/examples.yml | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./examples | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: ./examples/go.mod | |
cache: true | |
cache-dependency-path: ./examples/go.sum | |
- run: go build -v ./... | |
- run: go test -race -v ./... | |
dependabot: | |
needs: [build] | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} | |
steps: | |
- id: metadata | |
uses: dependabot/fetch-metadata@v2 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- run: | | |
gh pr review --approve "$PR_URL" | |
gh pr merge --squash --auto "$PR_URL" | |
env: | |
PR_URL: ${{github.event.pull_request.html_url}} | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |