Skip to content

Release v2.0.0-rc.2: clean runtime API, COPY path, production tuning #53

Release v2.0.0-rc.2: clean runtime API, COPY path, production tuning

Release v2.0.0-rc.2: clean runtime API, COPY path, production tuning #53

Workflow file for this run

name: Security
on:
pull_request:
branches: [main]
push:
branches: [main]
schedule:
- cron: "0 3 * * 1"
workflow_dispatch:
env:
GO_VERSION: "1.25"
jobs:
govulncheck:
name: govulncheck
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
cache: true
- name: Run govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: ${{ env.GO_VERSION }}
go-package: ./...
repo-checkout: false