Skip to content

Commit

Permalink
Revert "Configure Github Actions matrix builds for multiple recent Go…
Browse files Browse the repository at this point in the history
… versions"

This reverts commit e6c6656.
  • Loading branch information
cristim committed Feb 17, 2022
1 parent e6c6656 commit f295a1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,12 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '^1.16.1', '^1.17.1', '1.18.0-beta2' ]

steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
go-version: ^1.15.4

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/push_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,12 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '^1.16.1', '^1.17.1', '1.18.0-beta2' ]

steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
go-version: ^1.15.4

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down

0 comments on commit f295a1f

Please sign in to comment.