chore(deps): update go version to 1.24.13 #49
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: master-update | |
| # Syncs go dependencies with GitHub dependency submission API. | |
| # Updates capabilities.json with the latest information from the codebase. | |
| on: | |
| # manual trigger | |
| workflow_dispatch: | |
| # push or merge to master | |
| push: | |
| branches: | |
| - master | |
| permissions: {} | |
| jobs: | |
| dep-submission: | |
| name: master-update | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: 'Checkout repository' | |
| uses: actions/checkout@v5 | |
| - name: 'Setup Go environment' | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: 'Submit Go dependencies to GitHub' | |
| uses: actions/go-dependency-submission@v2 | |
| with: | |
| go-mod-path: go.mod | |
| go-build-target: . |