Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Fix CVE-2023-39325

Fix CVE-2023-39325 #53

Workflow file for this run

---
name: "Staticcheck"
on:
push:
branches:
- main
paths:
- '**.go'
pull_request:
paths:
- '**.go'
jobs:
staticcheck:
name: "Staticcheck"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.21.3'
- name: StaticCheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest && ls -1 && staticcheck ./...