Skip to content

Commit

Permalink
ci(deps): bump golang to version 1.17 in pipelines (Checkmarx#4325)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriopeixotocx authored Oct 1, 2021
1 parent 5d25eed commit 9e0f587
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-ci-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Set up Go 1.x
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Run test metrics script
id: testcov
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Go 1.16.x
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: golangci-lint
uses: golangci/[email protected]
with:
Expand All @@ -24,10 +24,10 @@ jobs:
name: go-generate
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Check out code
uses: actions/[email protected]
with:
Expand All @@ -39,11 +39,11 @@ jobs:
name: unit-tests
strategy:
matrix:
go-version: [1.16.x]
go-version: [1.17.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
name: e2e-tests
strategy:
matrix:
go-version: [1.16.x]
go-version: [1.17.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Set up Go 1.x
- name: Set up Go 1.17.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-apispec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.17
- name: Run GoReleaser
uses: goreleaser/[email protected]
with:
Expand Down

0 comments on commit 9e0f587

Please sign in to comment.