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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ $(eval $(call build-package,thanos,0.31.0-r0))
$(eval $(call build-package,secrets-store-csi-driver-provider-gcp,1.2.0-r0))
$(eval $(call build-package,secrets-store-csi-driver,1.3.2-r0))
$(eval $(call build-package,cluster-autoscaler,9.26.0-r0))
$(eval $(call build-package,rqlite,7.14.1-r0,rqlite))
$(eval $(call build-package,rqlite,7.14.1-r1,rqlite))
$(eval $(call build-package,karpenter,0.27.0-r0))
$(eval $(call build-package,kube-state-metrics,2.8.2-r0))
$(eval $(call build-package,consul,1.15.1-r0))
Expand Down
7 changes: 6 additions & 1 deletion rqlite.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package:
name: rqlite
# When bumping the version, you can remove the `go get` line in the build.
version: 7.14.1
epoch: 0
epoch: 1
description: The lightweight, distributed relational database built on SQLite
copyright:
- license: MIT
Expand All @@ -22,6 +23,10 @@ pipeline:
- runs: |
mkdir -p ${{targets.destdir}}/usr/bin
cd rqlite

# Mitigate GHSA-hw7c-3rfg-p46j
go get google.golang.org/[email protected]
go mod tidy
go build -tags osusergo,netgo,sqlite_omit_load_extension \
-o ${{targets.destdir}}/usr/bin/rqlite \
-ldflags="-extldflags=-static" \
Expand Down