Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .github/workflows/binary-scanner.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .github/workflows/go-supported-version-check.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/salus.yaml

This file was deleted.

17 changes: 12 additions & 5 deletions .github/workflows/vulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@
on:
pull_request:
push:
schedule:
- cron: '28 1 * * *'

permissions:
contents: read # to fetch code (actions/checkout)

jobs:
vulncheck:
name: Analysis
name: Run govulncheck
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v6
with:
go-version: '1.25' # GO_VERSION_DEF
check-latest: true
Expand All @@ -27,3 +25,12 @@
- name: Run govulncheck
run: govulncheck ./...
shell: bash
versioncheck:
name: Run go-supported-version-check
runs-on: ubuntu-latest
steps:
- name: Go Supported Version
uses: dopplerhq/go-supported-version-check-action@v1
Comment thread Dismissed
with:
go-version: "1.25" # GO_VERSION_DEF
version-requirement: any-supported
Loading