Skip to content

Add mgrctl commands for GPG key management #1165

Add mgrctl commands for GPG key management

Add mgrctl commands for GPG key management #1165

Workflow file for this run

# SPDX-FileCopyrightText: 2023 SUSE LLC
#
# SPDX-License-Identifier: Apache-2.0
name: Vulnerability check
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
govulncheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
with:
fetch-tags: true
fetch-depth: 0
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 #v5.5.0
with:
go-version: '1.25'
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
shell: bash
- id: govulncheck
name: Run govulncheck
run: govulncheck -tags ptf ./...
shell: bash