Skip to content

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.7 to 1.27.10 #294

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.7 to 1.27.10

chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.7 to 1.27.10 #294

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 ./...