Bump actions/upload-artifact from 4.2.0 to 4.3.0 #80
Workflow file for this run
This file contains 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: Tests and checks | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' | |
schedule: | |
- cron: '0 1 * * 0' | |
permissions: | |
contents: read | |
jobs: | |
govulncheck_job: | |
runs-on: ubuntu-latest | |
name: Run govulncheck | |
steps: | |
- id: govulncheck | |
uses: golang/govulncheck-action@7da72f730e37eeaad891fcff0a532d27ed737cd4 # v1 | |
with: | |
go-version-input: 1.21.5 | |
tests: | |
strategy: | |
matrix: | |
go: [ '~1.20', '~1.21' ] | |
runs-on: ubuntu-latest | |
name: Run tests with go version ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: ${{ matrix.go }} | |
- run: go test -v -fuzz FuzzHandler -fuzztime 50x ./handlers/ip/ |