Skip to content

Commit fbc2bcd

Browse files
committed
Merge branch 'master' into feat/rewrite-deb-in-go
2 parents 2371713 + c2cb0bd commit fbc2bcd

96 files changed

Lines changed: 1911 additions & 524 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/generate-protos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up Go
4949
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5050
with:
51-
go-version: '1.26.0'
51+
go-version: '1.26.1'
5252

5353
- name: Install protoc
5454
run: |

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up Go
5353
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
5454
with:
55-
go-version: '>=1.25.7'
55+
go-version: '>=1.26.1'
5656
- name: Set up terraform
5757
uses: hashicorp/setup-terraform@5e8dbf3c6d9deaf4193ca7a8fb23f2ac83bb6c85 # v4.0.0
5858
- name: Run pylint and yapf, go vet

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ update-api-snapshots:
5252
cd gcp/api && UPDATE_SNAPS=true ./run_tests_e2e.sh $(HOME)/.config/gcloud/application_default_credentials.json
5353

5454
lint:
55-
GOTOOLCHAIN=go1.26.0 $(run-cmd) tools/lint_and_format.sh
55+
GOTOOLCHAIN=go1.26.1 $(run-cmd) tools/lint_and_format.sh
5656

5757
build-osv-protos:
5858
cd osv && $(run-cmd) python -m grpc_tools.protoc --python_out=. --mypy_out=. --proto_path=. --proto_path=osv-schema/proto vulnerability.proto importfinding.proto

bindings/go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module osv.dev/bindings/go
22

3-
go 1.26.0
3+
go 1.26.1
44

55
require (
66
github.com/google/go-cmp v0.7.0

deployment/clouddeploy/gke-indexer/base/indexer-controller.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ spec:
4444
volumeMounts:
4545
- mountPath: "/tmp"
4646
name: "ssd"
47-
securityContext:
48-
privileged: true
4947
resources:
5048
requests:
5149
cpu: 5

deployment/clouddeploy/gke-indexer/base/indexer-worker.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ spec:
4646
volumeMounts:
4747
- mountPath: "/tmp"
4848
name: "ssd"
49-
securityContext:
50-
privileged: true
5149
resources:
5250
requests:
5351
cpu: 1

deployment/clouddeploy/gke-workers/base/alpine-cve-convert.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ spec:
2020
- name: alpine-cve-convert
2121
image: alpine-cve-convert
2222
imagePullPolicy: Always
23-
securityContext:
24-
privileged: true
2523
resources:
2624
requests:
2725
cpu: "2"

deployment/clouddeploy/gke-workers/base/combine-to-osv.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ spec:
2121
- name: combine-to-osv
2222
image: combine-to-osv
2323
imagePullPolicy: Always
24-
securityContext:
25-
privileged: true
2624
resources:
2725
requests:
2826
cpu: "30"

deployment/clouddeploy/gke-workers/base/cpe-repo-gen.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ spec:
1616
- name: cpe-repo-gen
1717
image: cpe-repo-gen
1818
imagePullPolicy: Always
19-
securityContext:
20-
privileged: true
2119
resources:
2220
requests:
2321
cpu: "1"

deployment/clouddeploy/gke-workers/base/cve5-to-osv.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ spec:
1717
- name: cve5-to-osv
1818
image: cve5-to-osv
1919
imagePullPolicy: Always
20-
securityContext:
21-
privileged: true
2220
resources:
2321
requests:
2422
cpu: "8"

0 commit comments

Comments
 (0)