mirror of
https://github.com/taigrr/bubbletea.git
synced 2026-04-02 02:59:09 -07:00
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
881 B
YAML
39 lines
881 B
YAML
name: examples
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
paths:
|
|
- '.github/workflows/examples.yml'
|
|
- './examples/go.mod'
|
|
- './examples/go.sum'
|
|
- './tutorials/go.mod'
|
|
- './tutorials/go.sum'
|
|
- './go.mod'
|
|
- './go.sum'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
tidy:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '^1'
|
|
cache: true
|
|
- shell: bash
|
|
run: |
|
|
(cd ./examples && go mod tidy)
|
|
(cd ./tutorials && go mod tidy)
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "chore: go mod tidy tutorials and examples"
|
|
branch: master
|
|
commit_user_name: actions-user
|
|
commit_user_email: actions@github.com
|
|
|