This repository was archived by the owner on Aug 14, 2025. It is now read-only.
Bump golang.org/x/crypto from 0.33.0 to 0.35.0 #23
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: golangci-lint | |
| on: [pull_request] | |
| jobs: | |
| # Check if there any dirty change for go mod tidy | |
| go-mod: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23.3 | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check go mod | |
| run: | | |
| go mod tidy | |
| git diff --exit-code go.mod | |
| golangci-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: lint | |
| uses: golangci/[email protected] | |
| with: | |
| version: 'v1.64.5' |