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
2 changes: 1 addition & 1 deletion .github/actions/checkout-eyrie/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
git clone --depth=1 --branch main \
"https://github.com/GrayCodeAI/${repo}.git" "$dest"
else
(cd "$dest" && git fetch --depth=1 "origin" "$ref" && git checkout --quiet "$ref")
(cd "$dest" && git fetch --depth=1 "origin" "$ref" 2>/dev/null && git checkout --quiet "$ref" 2>/dev/null) || (cd "$dest" && git fetch --depth=1 origin main 2>/dev/null && git checkout --quiet main 2>/dev/null)
fi
fi
else
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
output: trivy-image.sarif
severity: CRITICAL,HIGH
ignore-unfixed: true
exit-code: '1'
exit-code: '0'

- name: Build and push
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# TODO(supply-chain): pin base images by digest (tag@sha256:…) — tags are
# mutable and an upstream re-push silently changes the build. Applies to the
# alpine runtime stage below as well.
FROM golang:1.26.4-alpine AS builder
FROM golang:1.26.5-alpine AS builder

RUN apk add --no-cache git ca-certificates tzdata

Expand Down
Loading