Skip to content

Commit

Permalink
Merge pull request #29 from redhat-marketplace/fix/go1.19.7
Browse files Browse the repository at this point in the history
fix: go1.19.7, fix release test
  • Loading branch information
dacleyra authored Mar 24, 2023
2 parents 391831d + a68d40f commit b05a6ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.19.7

- name: Build
run: go build -v ./...
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.19.7
- name: Ginkgo
run: |
go install github.com/onsi/ginkgo/v2/ginkgo
go install github.com/onsi/gomega/...
- name: Test
run: ginkgo -r --randomizeAllSpecs --randomizeSuites --failOnPending --cover --trace --race --progress
run: ginkgo -r --randomize-all --randomize-suites --fail-on-pending --cover --trace --race --show-node-events
release:
runs-on: ubuntu-latest
needs: test
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.19.6
go-version: 1.19.7
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
before:
hooks:
- go mod tidy -go=1.17 && go mod tidy -go=1.19.6
- go mod tidy -go=1.17 && go mod tidy -go=1.19.7
- find . -type f -name "*.go" | xargs addlicense -c "IBM Corporation."
env:
- CGO_ENABLED=0
Expand Down

0 comments on commit b05a6ba

Please sign in to comment.