Skip to content

Commit

Permalink
fix go version because go-cty requires go 1.18
Browse files Browse the repository at this point in the history
Signed-off-by: hanen mizouni <hanen.mizouni@outscale.com>
  • Loading branch information
outscale-hmi committed Nov 17, 2022
1 parent 31d1cbc commit f806e49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.19'
go-version: '1.18'
- name: Lint
uses: golangci/golangci-lint-action@v3.2.0
with:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19]
go-version: [1.18]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.18
- name: Build
run: GOOS=${{matrix.goos}} go build -v -o packer-plugin-outscale_${{matrix.goos}}
- name: Upload a Build Artifact
Expand Down
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/packer-plugin-outscale

go 1.19
go 1.18

require (
github.com/antihax/optional v1.0.0
Expand Down

0 comments on commit f806e49

Please sign in to comment.