chore(deps): bump github.com/projectdiscovery/retryabledns from 1.0.100 to 1.0.101 #2288
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: 🙏🏻 Lint Test | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.go' | |
| - '**.mod' | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| name: Lint Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.21.x | |
| - name: Install Dependences | |
| run: sudo apt install libpcap-dev | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v7.0.0 | |
| with: | |
| version: latest | |
| args: --timeout 5m |