Bump Go #61
  
    
      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: Bump Go | |
| on: | |
| schedule: | |
| - cron: "0 3 * * *" # 3 AM UTC | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| bump-go: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Bump Go version | |
| env: | |
| GIT_COMMITTER_NAME: cli automation | |
| GIT_AUTHOR_NAME: cli automation | |
| GIT_COMMITTER_EMAIL: [email protected] | |
| GIT_AUTHOR_EMAIL: [email protected] | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| bash .github/workflows/scripts/bump-go.sh --apply go.mod |