Skip to content

be more lenient with timeout for a test #629

be more lenient with timeout for a test

be more lenient with timeout for a test #629

Workflow file for this run

name: Security Checks
on:
push:
branches:
- main
pull_request:
branches:
types:
- ready_for_review
- opened
- reopened
- synchronize
workflow_dispatch:
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: '1.25.5'
- name: Download dependencies
run: go mod download
- name: Install security tools
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
go install github.com/securego/gosec/v2/cmd/gosec@latest
- name: Run govulncheck
run: govulncheck ./dbos/...
- name: Run gosec
run: gosec ./dbos/...