Skip to content

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 in the go_modules group #299

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 in the go_modules group

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 in the go_modules group #299

Workflow file for this run

---
name: "Gosec"
on:
# push:
# branches:
# - main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go 1.x
id: go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Go version
run: |
go version
- name: Go Envirioment Variables
run: go env
# - name: Run Gosec Security Scanner
# uses: securego/gosec@master
# with:
# args: ./...
- name: Run Gosec Security Scanner
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec -exclude=G307 -conf .gosec.json ./...