We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 025154d commit 008c09eCopy full SHA for 008c09e
.github/workflows/cifuzz.yaml
@@ -13,6 +13,10 @@ jobs:
13
steps:
14
- name: Checkout
15
uses: actions/checkout@v3
16
+ - name: Setup Go
17
+ uses: actions/setup-go@v3
18
+ with:
19
+ go-version: 1.18.x
20
- name: Restore Go cache
21
uses: actions/cache@v3
22
with:
tests/fuzz/Dockerfile.builder
@@ -1,5 +1,10 @@
1
+FROM golang:1.18 AS go
2
+
3
FROM gcr.io/oss-fuzz-base/base-builder-go
4
5
+# ensures golang 1.18 to enable go native fuzzing.
6
+COPY --from=go /usr/local/go /usr/local/
7
8
RUN apt-get update && apt-get install -y cmake pkg-config
9
10
COPY ./ $GOPATH/src/github.com/fluxcd/image-automation-controller/
0 commit comments