Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/boilerplate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
persist-credentials: false

- uses: chainguard-dev/actions/boilerplate@f0be69916b439d0fcced2451b23d0f27cd46d545 # main
- uses: chainguard-dev/actions/boilerplate@4d37df0d85a91f619edc34a8803323033cdcb124 # main
with:
extension: ${{ matrix.extension }}
language: ${{ matrix.language }}
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version-file: "go.mod"
check-latest: true

- uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
- uses: golang/govulncheck-action@032d45514ae346b1db93c04b0c90b841c370344f # v1.1.0

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid govulncheck action pin

High Severity · Logic Bug

The build.yaml workflow pins golang/govulncheck-action to 032d455... (labeled v1.1.0). This commit/tag does not exist upstream, which causes the Build job to fail when resolving the action and blocks PR CI.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b0b979d. Configure here.

with:
go-version-file: "go.mod"
repo-checkout: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/donotsubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
with:
persist-credentials: false

- uses: chainguard-dev/actions/donotsubmit@f0be69916b439d0fcced2451b23d0f27cd46d545 # main
- uses: chainguard-dev/actions/donotsubmit@4d37df0d85a91f619edc34a8803323033cdcb124 # main
4 changes: 2 additions & 2 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: go install ./

- name: Setup Cluster
uses: chainguard-dev/actions/setup-kind@f0be69916b439d0fcced2451b23d0f27cd46d545 # main
uses: chainguard-dev/actions/setup-kind@4d37df0d85a91f619edc34a8803323033cdcb124 # main

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Invalid Chainguard actions pin

High Severity · Logic Bug

Eight workflow steps pin chainguard-dev/actions/* to commit 4d37df0…, but that commit does not appear to exist upstream. The previous pin f0be699… still resolves. KinD e2e, style, boilerplate, and donotsubmit jobs would fail when GitHub Actions tries to fetch those actions.

Additional Locations (2)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b0b979d. Configure here.

with:
registry-authority: ${{ env.REGISTRY_NAME }}:${{ env.REGISTRY_PORT }}

Expand Down Expand Up @@ -71,4 +71,4 @@ jobs:

- name: Collect diagnostics and upload
if: ${{ failure() }}
uses: chainguard-dev/actions/kind-diag@f0be69916b439d0fcced2451b23d0f27cd46d545 # main
uses: chainguard-dev/actions/kind-diag@4d37df0d85a91f619edc34a8803323033cdcb124 # main
2 changes: 1 addition & 1 deletion .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/stale@eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899 # v10.3.0
- uses: actions/stale@1e223db275d687790206a7acac4d1a11bd6fe629 # v10.4.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/style.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
go-version-file: 'go.mod'
check-latest: true

- uses: chainguard-dev/actions/gofmt@f0be69916b439d0fcced2451b23d0f27cd46d545
- uses: chainguard-dev/actions/gofmt@4d37df0d85a91f619edc34a8803323033cdcb124
with:
args: -s

Expand All @@ -46,7 +46,7 @@ jobs:
go-version-file: 'go.mod'
check-latest: true

- uses: chainguard-dev/actions/goimports@f0be69916b439d0fcced2451b23d0f27cd46d545
- uses: chainguard-dev/actions/goimports@4d37df0d85a91f619edc34a8803323033cdcb124

lint:
name: Lint
Expand All @@ -67,10 +67,10 @@ jobs:
go-version-file: 'go.mod'
check-latest: true

- uses: chainguard-dev/actions/trailing-space@f0be69916b439d0fcced2451b23d0f27cd46d545
- uses: chainguard-dev/actions/trailing-space@4d37df0d85a91f619edc34a8803323033cdcb124
if: ${{ always() }}

- uses: chainguard-dev/actions/eof-newline@f0be69916b439d0fcced2451b23d0f27cd46d545
- uses: chainguard-dev/actions/eof-newline@4d37df0d85a91f619edc34a8803323033cdcb124
if: ${{ always() }}

- uses: reviewdog/action-misspell@d6429416b12b09b4e2768307d53bef58d172e962 # v1.27.0
Expand Down
Loading