Skip to content

Commit 3cb0baa

Browse files
picatzchaptersix
andauthored
SEC-1654: remediate missing-govulncheck-workflow (#999)
> 🏕️ This pull request was created by [camper](https://github.com/temporalio/camper), an automated security campaign tool. ## Finding <table> <tr><td><strong>Rule</strong></td><td><code>missing-govulncheck-workflow</code></td></tr> <tr><td><strong>Severity</strong></td><td>MEDIUM</td></tr> <tr><td><strong>Repository</strong></td><td><code>temporalio/cli</code></td></tr> <tr><td><strong>Ticket</strong></td><td><a href="https://temporalio.atlassian.net/browse/SEC-1654">SEC-1654</a></td></tr> </table> ## Summary - `.github/workflows/govulncheck.yml`: Added a new pull-request-only `Govulncheck` workflow with `contents: read` permissions and a single `ubuntu-latest` job that runs `actions/checkout@v6`, `actions/setup-go@v6` (`go-version-file: go.mod`), and `temporalio/public-actions/golang/govulncheck@main` without `continue-on-error`. ## Instructions - **Approve** to merge this fix - **Request changes** to trigger a new remediation attempt - `/camper rebase` — rebase onto the base branch - `/camper close` — close this PR without merging - `/camper retry` — close and retry with a new fix Co-authored-by: Alex Stanfield <13949480+chaptersix@users.noreply.github.com>
1 parent adbd3b2 commit 3cb0baa

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/govulncheck.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Govulncheck
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
govulncheck:
11+
name: Govulncheck
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
- uses: actions/setup-go@v6
16+
with:
17+
go-version-file: go.mod
18+
- uses: temporalio/public-actions/golang/govulncheck@main

0 commit comments

Comments
 (0)