chore(deps): bump github.com/redis/go-redis/v9 from 9.12.1 to 9.17.2 #1136
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: Go Version Change Detection | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - 'go.mod' | |
| permissions: | |
| pull-requests: write | |
| contents: read | |
| jobs: | |
| check-go-version: | |
| name: Check for Go version changes | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR branch | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check Go version and comment | |
| uses: ./.github/actions/go-version-check | |
| with: | |
| base-ref: ${{ github.base_ref }} | |
| token: ${{ secrets.GITHUB_TOKEN }} |