Skip to content

Commit

Permalink
fix(ci): set go-version to 1.20 in YAML (kubearmor#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
daemon1024 authored and PrimalPimmy committed Jun 12, 2023
1 parent bd92072 commit 9d28176
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-ginkgo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: v1.20
go-version: "v1.20"
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.3.0
- name: Test connectivity
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.20
go-version: "v1.20"

- name: Build karmor
run: make
Expand All @@ -28,7 +28,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.20
go-version: "v1.20"

- name: Check gofmt
run: make gofmt
Expand All @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.20
go-version: "v1.20"

- name: Run Gosec Security Scanner
run: make gosec
Expand All @@ -65,7 +65,7 @@ jobs:

- uses: actions/setup-go@v2
with:
go-version: v1.20
go-version: "v1.20"

- name: Run unit tests
run: make test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20
go-version: "1.20"

- name: Install Cosign
uses: sigstore/cosign-installer@main
Expand Down

0 comments on commit 9d28176

Please sign in to comment.