Skip to content

chore(deps): update module github.com/moby/moby/client to v0.5.1 #1985

chore(deps): update module github.com/moby/moby/client to v0.5.1

chore(deps): update module github.com/moby/moby/client to v0.5.1 #1985

Workflow file for this run

---
name: Run Security Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- cmd/**
- pkg/**
- internal/**
- main.go
- go.mod
- go.sum
schedule:
- cron: "0 0 * * *"
env:
OUTPUT_FILE: results.sarif
permissions:
contents: read # Set default read-only permissions
jobs:
gosec:
name: Run gosec Scanner
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Harden the Runner (Step Security)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Checkout Repo
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Run Gosec Security Scanner
uses: securego/gosec@9e75c0576c9878035d4221392108d458abe10fc3 # v2.28.0
with:
args: "-exclude-generated -no-fail -fmt sarif -out ${{ env.OUTPUT_FILE }} ./..."
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
sarif_file: ${{ env.OUTPUT_FILE }}
category: gosec-sarif
govulncheck:
name: Run govulncheck Scanner
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Harden the Runner (Step Security)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Run govulncheck
id: govulncheck
uses: nicholas-fedor/govulncheck-action@2e8328bfd2a2259f6b48ad47edc8101c86e74883 # v1.0.5
with:
output-format: sarif
output-file: ${{ env.OUTPUT_FILE }}
go-version-file: "go.mod"
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
sarif_file: ${{ env.OUTPUT_FILE }}
category: govulncheck-sarif