Skip to content

deps(deps): bump github.com/moby/moby/client from 0.5.0 to 0.5.1 in the go-dependencies group #728

deps(deps): bump github.com/moby/moby/client from 0.5.0 to 0.5.1 in the go-dependencies group

deps(deps): bump github.com/moby/moby/client from 0.5.0 to 0.5.1 in the go-dependencies group #728

Workflow file for this run

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
name: Security Scanning
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
# Run weekly on Monday at 9:00 AM UTC
- cron: '0 9 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
govulncheck:
name: Go Vulnerability Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: go.mod
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@v1.1.4
- name: Run govulncheck
run: govulncheck ./...