Skip to content

Commit

Permalink
fix go version in go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-toa authored and outscale-hmi committed Dec 11, 2024
1 parent dc40516 commit 3249b5f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
paths:
- "**.go"
- "**.yaml"
- "**.mod"
- "**.sum"
- "!capm.yaml"
- "!osc-secret.yaml"
- "!example/**.yaml"
Expand Down Expand Up @@ -37,10 +39,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
go-version-file: './go.mod'
- name: check-gofmt
run: make checkfmt
shell: bash
Expand All @@ -54,6 +57,6 @@ jobs:
run: pip install yamllint
- name: check with yamlint
run: yamllint -c .github/linters/yaml-lint.yaml . --format github
- name: Lint
run: make vet
- name: Run make build
run: make build
shell: bash
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/outscale-dev/cluster-api-provider-outscale.git

go 1.23
go 1.23.0

require (
github.com/Jeffail/gabs v1.4.0
Expand Down

0 comments on commit 3249b5f

Please sign in to comment.