Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dprince committed Aug 5, 2022
1 parent 6f6dbb4 commit a40f293
Show file tree
Hide file tree
Showing 5 changed files with 278 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-mariadb-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
go-version: 1.18.0

- name: Checkout mariadb-operator repository
uses: actions/checkout@v2
Expand All @@ -91,7 +91,7 @@ jobs:
uses: redhat-actions/openshift-tools-installer@v1
with:
source: github
operator-sdk: '1.18.1'
operator-sdk: '1.22.0'

- name: Log in to Quay Registry
uses: redhat-actions/podman-login@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.8
go-version: 1.18.0
- name: Checkout project code
uses: actions/checkout@v2
- name: Checkout openstack-k8s-operators-ci project
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.8
go-version: 1.18.0
- name: Checkout project code
uses: actions/checkout@v2
- name: Run golangci lint
Expand Down
25 changes: 25 additions & 0 deletions api/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module github.com/openstack-k8s-operators/mariadb-operator/api

go 1.18

require (
k8s.io/apimachinery v0.24.2
sigs.k8s.io/controller-runtime v0.12.1
)

require (
github.com/go-logr/logr v1.2.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gofuzz v1.1.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/klog/v2 v2.60.1 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
)
Loading

0 comments on commit a40f293

Please sign in to comment.